Bug 1230910 Fix 'error: stray '\' in program' draft
authorTom Ritter <tom@mozilla.com>
Tue, 07 Mar 2017 19:51:36 +0000
changeset 496064 1717c3f547c7ef28db2e75f27ec991718cff27cb
parent 496063 6982aa4cd3e05b22a39750755310383b04f4f99a
child 496065 4a5417371651ea8a2e7fd6d82fd9b6ae4ca14d7e
push id48518
push userbmo:tom@mozilla.com
push dateThu, 09 Mar 2017 19:30:51 +0000
bugs1230910
milestone52.0.1
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/macros.h"
 #include "base/move.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