diff options
-rw-r--r-- | include/llvm/System/MappedFile.h | 5 | ||||
-rw-r--r-- | lib/System/MappedFile.cpp | 1 |
2 files changed, 1 insertions, 5 deletions
diff --git a/include/llvm/System/MappedFile.h b/include/llvm/System/MappedFile.h index d74bf5c..af13cbb 100644 --- a/include/llvm/System/MappedFile.h +++ b/include/llvm/System/MappedFile.h @@ -15,7 +15,6 @@ #define LLVM_SYSTEM_MAPPEDFILE_H #include "llvm/System/Path.h" -#include "llvm/System/IncludeFile.h" namespace llvm { namespace sys { @@ -162,7 +161,7 @@ namespace sys { /// @{ private: ///< Disallow assignment - MappedFile& operator = ( const MappedFile & that ); + MappedFile& operator=(const MappedFile &that); ///< Disallow copying MappedFile(const MappedFile& that); /// @} @@ -170,6 +169,4 @@ namespace sys { } } -FORCE_DEFINING_FILE_TO_BE_LINKED(SystemMappedFile) - #endif diff --git a/lib/System/MappedFile.cpp b/lib/System/MappedFile.cpp index fb719f6..d2bc403 100644 --- a/lib/System/MappedFile.cpp +++ b/lib/System/MappedFile.cpp @@ -32,4 +32,3 @@ using namespace sys; #include "Win32/MappedFile.inc" #endif -DEFINING_FILE_FOR(SystemMappedFile) |