diff options
Diffstat (limited to 'system/common/utils.h')
-rw-r--r-- | system/common/utils.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/system/common/utils.h b/system/common/utils.h index 26e8f23df9..c6cf0635ed 100644 --- a/system/common/utils.h +++ b/system/common/utils.h @@ -22,10 +22,3 @@ do { \ } while ((fn) == -1 && errno == EINTR) #endif - -// A macro to disallow the copy constructor and operator= functions -#ifndef DISALLOW_COPY_AND_ASSIGN -#define DISALLOW_COPY_AND_ASSIGN(TypeName) \ - TypeName(const TypeName&) = delete; \ - void operator=(const TypeName&) = delete -#endif |