aboutsummaryrefslogtreecommitdiff
path: root/src/processor/logging.cc
diff options
context:
space:
mode:
authorivan.penkov@gmail.com <ivan.penkov@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-06-28 22:46:01 +0000
committerivan.penkov@gmail.com <ivan.penkov@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-06-28 22:46:01 +0000
commit6de969a3040fa31ba60302c66613d1d2e6f5a730 (patch)
treeaad9de34e00834709440f01cb0f54e315989490e /src/processor/logging.cc
parentFix Android build of client library (diff)
downloadbreakpad-6de969a3040fa31ba60302c66613d1d2e6f5a730.tar.xz
This change allows compiling the google-breakpad code using a global ::string class instead of std::string. For more details take a look at common/using_std_string.h
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@974 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/processor/logging.cc')
-rw-r--r--src/processor/logging.cc17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/processor/logging.cc b/src/processor/logging.cc
index 70f6958e..a6e15cae 100644
--- a/src/processor/logging.cc
+++ b/src/processor/logging.cc
@@ -39,6 +39,9 @@
#include <string.h>
#include <time.h>
+#include <string>
+
+#include "common/using_std_string.h"
#include "processor/logging.h"
#include "processor/pathname_stripper.h"
@@ -80,25 +83,25 @@ LogStream::~LogStream() {
stream_ << std::endl;
}
-std::string HexString(u_int32_t number) {
+string HexString(u_int32_t number) {
char buffer[11];
snprintf(buffer, sizeof(buffer), "0x%x", number);
- return std::string(buffer);
+ return string(buffer);
}
-std::string HexString(u_int64_t number) {
+string HexString(u_int64_t number) {
char buffer[19];
snprintf(buffer, sizeof(buffer), "0x%" PRIx64, number);
- return std::string(buffer);
+ return string(buffer);
}
-std::string HexString(int number) {
+string HexString(int number) {
char buffer[19];
snprintf(buffer, sizeof(buffer), "0x%x", number);
- return std::string(buffer);
+ return string(buffer);
}
-int ErrnoString(std::string *error_string) {
+int ErrnoString(string *error_string) {
assert(error_string);
// strerror isn't necessarily thread-safe. strerror_r would be preferrable,