From 6de969a3040fa31ba60302c66613d1d2e6f5a730 Mon Sep 17 00:00:00 2001 From: "ivan.penkov@gmail.com" Date: Thu, 28 Jun 2012 22:46:01 +0000 Subject: 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 --- src/client/linux/sender/google_crash_report_sender.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/linux/sender') diff --git a/src/client/linux/sender/google_crash_report_sender.cc b/src/client/linux/sender/google_crash_report_sender.cc index be897adb..0d48cbe6 100644 --- a/src/client/linux/sender/google_crash_report_sender.cc +++ b/src/client/linux/sender/google_crash_report_sender.cc @@ -32,7 +32,7 @@ #include #include -using std::string; +#include "common/using_std_string.h" DEFINE_string(crash_server, "https://clients2.google.com/cr", "The crash server to upload minidumps to."); @@ -59,7 +59,7 @@ DEFINE_string(proxy_userpasswd, "", bool CheckForRequiredFlagsOrDie() { - std::string error_text = ""; + string error_text = ""; if (FLAGS_product_name.empty()) { error_text.append("\nProduct name must be specified."); } -- cgit v1.2.1