aboutsummaryrefslogtreecommitdiff
path: root/src/processor/logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/processor/logging.h')
-rw-r--r--src/processor/logging.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/processor/logging.h b/src/processor/logging.h
index 642506d5..6a964f6e 100644
--- a/src/processor/logging.h
+++ b/src/processor/logging.h
@@ -60,6 +60,7 @@
#include <iostream>
#include <string>
+#include "common/using_std_string.h"
#include "google_breakpad/common/breakpad_types.h"
#ifdef BP_LOGGING_INCLUDE
@@ -118,14 +119,14 @@ class LogMessageVoidify {
};
// Returns number formatted as a hexadecimal string, such as "0x7b".
-std::string HexString(u_int32_t number);
-std::string HexString(u_int64_t number);
-std::string HexString(int number);
+string HexString(u_int32_t number);
+string HexString(u_int64_t number);
+string HexString(int number);
// Returns the error code as set in the global errno variable, and sets
// error_string, a required argument, to a string describing that error
// code.
-int ErrnoString(std::string *error_string);
+int ErrnoString(string *error_string);
} // namespace google_breakpad