Index: mojo/public/cpp/system/macros.h |
diff --git a/mojo/public/cpp/system/macros.h b/mojo/public/cpp/system/macros.h |
index f48c3477dcceb3212f9497cda59d844ed661a0ca..a6551480481f9c88daf197a7d963c0236ff1a0c4 100644 |
--- a/mojo/public/cpp/system/macros.h |
+++ b/mojo/public/cpp/system/macros.h |
@@ -11,14 +11,11 @@ |
// Mojo C++ API users can assume that mojo/public/cpp/system/macros.h |
// includes mojo/public/c/system/macros.h. |
+// TODO(vtl): Get rid of this once all users have been eliminated. |
// Annotate a virtual method indicating it must be overriding a virtual method |
// in the parent class. Use like: |
// virtual void foo() OVERRIDE; |
-#if defined(_MSC_VER) || defined(__clang__) |
#define MOJO_OVERRIDE override |
-#else |
-#define MOJO_OVERRIDE |
-#endif |
// A macro to disallow the copy constructor and operator= functions. |
// This should be used in the private: declarations for a class. |