remove DEFINING_FILE_FOR for MappedFile.h

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49008 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-04-01 00:35:55 +00:00
parent 1544e4713b
commit 328c84aa99
2 changed files with 1 additions and 5 deletions

View File

@ -15,7 +15,6 @@
#define LLVM_SYSTEM_MAPPEDFILE_H #define LLVM_SYSTEM_MAPPEDFILE_H
#include "llvm/System/Path.h" #include "llvm/System/Path.h"
#include "llvm/System/IncludeFile.h"
namespace llvm { namespace llvm {
namespace sys { namespace sys {
@ -162,7 +161,7 @@ namespace sys {
/// @{ /// @{
private: private:
///< Disallow assignment ///< Disallow assignment
MappedFile& operator = ( const MappedFile & that ); MappedFile& operator=(const MappedFile &that);
///< Disallow copying ///< Disallow copying
MappedFile(const MappedFile& that); MappedFile(const MappedFile& that);
/// @} /// @}
@ -170,6 +169,4 @@ namespace sys {
} }
} }
FORCE_DEFINING_FILE_TO_BE_LINKED(SystemMappedFile)
#endif #endif

View File

@ -32,4 +32,3 @@ using namespace sys;
#include "Win32/MappedFile.inc" #include "Win32/MappedFile.inc"
#endif #endif
DEFINING_FILE_FOR(SystemMappedFile)