From 0229cbae3339bfadcf018fa424a7163e02c1a0b7 Mon Sep 17 00:00:00 2001 From: "andresp@webrtc.org" Date: Thu, 4 Sep 2014 04:53:29 +0000 Subject: [PATCH] Remove ambiguous call to MakeCheckOpString. BUG=3777 R=andrew@webrtc.org Review URL: https://webrtc-codereview.appspot.com/14339004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7051 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/base/checks.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/base/checks.h b/webrtc/base/checks.h index d8be3ad594..fc3b329328 100644 --- a/webrtc/base/checks.h +++ b/webrtc/base/checks.h @@ -131,11 +131,11 @@ std::string* MakeCheckOpString( inline std::string* Check##name##Impl(const t1& v1, const t2& v2, \ const char* names) { \ if (v1 op v2) return NULL; \ - else return MakeCheckOpString(v1, v2, names); \ + else return rtc::MakeCheckOpString(v1, v2, names); \ } \ inline std::string* Check##name##Impl(int v1, int v2, const char* names) { \ if (v1 op v2) return NULL; \ - else return MakeCheckOpString(v1, v2, names); \ + else return rtc::MakeCheckOpString(v1, v2, names); \ } DEFINE_CHECK_OP_IMPL(EQ, ==) DEFINE_CHECK_OP_IMPL(NE, !=)