Index: base/macros.h |
diff --git a/base/macros.h b/base/macros.h |
index 4adbbb075509d037934fa5e9f24eafe2c05b3ea1..5f8d9705d2dd04666f86d13f6a34b49d6b555902 100644 |
--- a/base/macros.h |
+++ b/base/macros.h |
@@ -27,13 +27,6 @@ |
TypeName(const TypeName&); \ |
void operator=(const TypeName&) |
-// An older, deprecated, politically incorrect name for the above. |
-// NOTE: The usage of this macro was banned from our code base, but some |
-// third_party libraries are yet using it. |
-// TODO(tfarina): Figure out how to fix the usage of this macro in the |
-// third_party libraries and get rid of it. |
-#define DISALLOW_EVIL_CONSTRUCTORS(TypeName) DISALLOW_COPY_AND_ASSIGN(TypeName) |
- |
// A macro to disallow all the implicit constructors, namely the |
// default constructor, copy constructor and operator= functions. |
// |