Index: third_party/mojo/src/mojo/public/cpp/system/macros.h |
diff --git a/third_party/mojo/src/mojo/public/cpp/system/macros.h b/third_party/mojo/src/mojo/public/cpp/system/macros.h |
index f2bd0bcc6fbff5c6c83f8aed68dcf92fa20332d8..8c7998961fc2b86df11a7ac64b49ba2d729c6c3f 100644 |
--- a/third_party/mojo/src/mojo/public/cpp/system/macros.h |
+++ b/third_party/mojo/src/mojo/public/cpp/system/macros.h |
@@ -2,15 +2,15 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef MOJO_PUBLIC_CPP_SYSTEM_MACROS_H_ |
-#define MOJO_PUBLIC_CPP_SYSTEM_MACROS_H_ |
- |
-#include "mojo/public/c/system/macros.h" |
- |
// Define a set of C++ specific macros. |
// Mojo C++ API users can assume that mojo/public/cpp/system/macros.h |
// includes mojo/public/c/system/macros.h. |
+#ifndef MOJO_PUBLIC_CPP_SYSTEM_MACROS_H_ |
+#define MOJO_PUBLIC_CPP_SYSTEM_MACROS_H_ |
+ |
+#include "mojo/public/c/system/macros.h" // Symbols exposed. |
+ |
// A macro to disallow the copy constructor and operator= functions. |
// This should be used in the private: declarations for a class. |
#define MOJO_DISALLOW_COPY_AND_ASSIGN(TypeName) \ |