diff options
author | Tobias <thm.frey@gmail.com> | 2018-07-31 01:03:47 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-07-30 16:03:47 -0700 |
commit | 420f8fb29e99cdef3c7338048e31723dc31bac55 (patch) | |
tree | 41d13ea98f9740c4ee2d5bd22058010a768c65f6 | |
parent | a483e5e28de936e5eab81c1b9d66faf7b738f612 (diff) |
Port #3758 from Citra (#852): Add missing std::string import in text_formatter
-rw-r--r-- | src/common/logging/text_formatter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/logging/text_formatter.h b/src/common/logging/text_formatter.h index c587faefb4..9609cec7c1 100644 --- a/src/common/logging/text_formatter.h +++ b/src/common/logging/text_formatter.h @@ -5,6 +5,7 @@ #pragma once #include <cstddef> +#include <string> namespace Log { |