aboutsummaryrefslogtreecommitdiff
path: root/src/common/basictypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/basictypes.h')
-rw-r--r--src/common/basictypes.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/common/basictypes.h b/src/common/basictypes.h
index 6458a893..79c9b775 100644
--- a/src/common/basictypes.h
+++ b/src/common/basictypes.h
@@ -29,14 +29,6 @@
#ifndef COMMON_BASICTYPES_H_
#define COMMON_BASICTYPES_H_
-// A macro to disallow the copy constructor and operator= functions
-// This should be used in the private: declarations for a class
-#ifndef DISALLOW_COPY_AND_ASSIGN
-#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
- TypeName(const TypeName&); \
- void operator=(const TypeName&)
-#endif // DISALLOW_COPY_AND_ASSIGN
-
namespace google_breakpad {
// Used to explicitly mark the return value of a function as unused. If you are