Bug 1230910 Fix 'error: stray '\' in program' draft
authorTom Ritter <tom@mozilla.com>
Tue, 07 Mar 2017 19:51:36 +0000
changeset 656084 21b66ce499a9392a261ab1cb1874705f65b50589
parent 656083 054face2ed64449de44e875c768821f022862d7f
child 656085 b579918f14260303ffb48b66f13327b3cab2c47d
push id77058
push userbmo:tom@mozilla.com
push dateWed, 30 Aug 2017 18:21:00 +0000
bugs1230910
milestone57.0a1
Bug 1230910 Fix 'error: stray '\' in program' MozReview-Commit-ID: 4D5bIT9Fei4
security/sandbox/chromium/base/win/scoped_handle.h
--- a/security/sandbox/chromium/base/win/scoped_handle.h
+++ b/security/sandbox/chromium/base/win/scoped_handle.h
@@ -13,17 +13,17 @@
 #include "base/logging.h"
 #include "base/macros.h"
 
 // TODO(rvargas): remove this with the rest of the verifier.
 #if defined(COMPILER_MSVC)
 #include <intrin.h>
 #define BASE_WIN_GET_CALLER _ReturnAddress()
 #elif defined(COMPILER_GCC)
-#define BASE_WIN_GET_CALLER __builtin_extract_return_addr(\\
+#define BASE_WIN_GET_CALLER __builtin_extract_return_addr(\
     __builtin_return_address(0))
 #endif
 
 namespace base {
 namespace win {
 
 // Generic wrapper for raw handles that takes care of closing handles
 // automatically. The class interface follows the style of