]> granicus.if.org Git - clang/commitdiff
Remove dead code.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 27 Jan 2014 22:08:43 +0000 (22:08 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 27 Jan 2014 22:08:43 +0000 (22:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200251 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/Module.h

index a760ae3ce691b2c3070b83a8dcd338fa528149cc..a57f21b5f25246ca49bcfedd289da8dff92a7452 100644 (file)
@@ -255,16 +255,6 @@ public:
   /// \brief The list of conflicts.
   std::vector<Conflict> Conflicts;
 
-  /// \brief Construct a top-level module.
-  explicit Module(StringRef Name, SourceLocation DefinitionLoc,
-                  bool IsFramework)
-    : Name(Name), DefinitionLoc(DefinitionLoc), Parent(0),Umbrella(),ASTFile(0),
-      IsAvailable(true), IsFromModuleFile(false), IsFramework(IsFramework), 
-      IsExplicit(false), IsSystem(false),
-      InferSubmodules(false), InferExplicitSubmodules(false),
-      InferExportWildcard(false), ConfigMacrosExhaustive(false),
-      NameVisibility(Hidden) { }
-  
   /// \brief Construct a new module or submodule.
   Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent, 
          bool IsFramework, bool IsExplicit);