aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/System/MappedFile.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-04-01 00:35:55 +0000
committerChris Lattner <sabre@nondot.org>2008-04-01 00:35:55 +0000
commit328c84aa992138cda53d197f4d180ec5b40a5aa2 (patch)
tree850b07e7bb194e78ef23d14f8d686469e8ac9072 /include/llvm/System/MappedFile.h
parent1544e4713be68edcf042de5aed7265dff7169d9d (diff)
remove DEFINING_FILE_FOR for MappedFile.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49008 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System/MappedFile.h')
-rw-r--r--include/llvm/System/MappedFile.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/llvm/System/MappedFile.h b/include/llvm/System/MappedFile.h
index d74bf5c2be..af13cbb5af 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