Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit c95df94

Browse files
author
Zachary Turner
committed
Move pdb code into pdb namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268544 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 7fa1a5f commit c95df94

File tree

121 files changed

+277
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+277
-89
lines changed

include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include <memory>
1616

1717
namespace llvm {
18+
namespace pdb {
1819

1920
template <typename ChildType>
2021
class ConcreteSymbolEnumerator : public IPDBEnumChildren<ChildType> {
@@ -55,5 +56,6 @@ class ConcreteSymbolEnumerator : public IPDBEnumChildren<ChildType> {
5556
std::unique_ptr<IPDBEnumSymbols> Enumerator;
5657
};
5758
}
59+
}
5860

5961
#endif

include/llvm/DebugInfo/PDB/DIA/DIADataStream.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "llvm/DebugInfo/PDB/IPDBDataStream.h"
1515

1616
namespace llvm {
17+
namespace pdb {
1718
class DIADataStream : public IPDBDataStream {
1819
public:
1920
explicit DIADataStream(CComPtr<IDiaEnumDebugStreamData> DiaStreamData);
@@ -29,5 +30,6 @@ class DIADataStream : public IPDBDataStream {
2930
CComPtr<IDiaEnumDebugStreamData> StreamData;
3031
};
3132
}
33+
}
3234

3335
#endif

include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
1515

1616
namespace llvm {
17+
namespace pdb {
1718

1819
class IPDBDataStream;
1920

@@ -31,5 +32,6 @@ class DIAEnumDebugStreams : public IPDBEnumChildren<IPDBDataStream> {
3132
CComPtr<IDiaEnumDebugStreams> Enumerator;
3233
};
3334
}
35+
}
3436

3537
#endif

include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
1515

1616
namespace llvm {
17-
17+
namespace pdb {
1818
class IPDBLineNumber;
1919

2020
class DIAEnumLineNumbers : public IPDBEnumChildren<IPDBLineNumber> {
@@ -31,5 +31,6 @@ class DIAEnumLineNumbers : public IPDBEnumChildren<IPDBLineNumber> {
3131
CComPtr<IDiaEnumLineNumbers> Enumerator;
3232
};
3333
}
34+
}
3435

3536
#endif

include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
1515

1616
namespace llvm {
17-
17+
namespace pdb {
1818
class DIASession;
1919

2020
class DIAEnumSourceFiles : public IPDBEnumChildren<IPDBSourceFile> {
@@ -33,5 +33,6 @@ class DIAEnumSourceFiles : public IPDBEnumChildren<IPDBSourceFile> {
3333
CComPtr<IDiaEnumSourceFiles> Enumerator;
3434
};
3535
}
36+
}
3637

3738
#endif

include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
1515

1616
namespace llvm {
17-
17+
namespace pdb {
1818
class DIASession;
1919

2020
class DIAEnumSymbols : public IPDBEnumChildren<PDBSymbol> {
@@ -33,5 +33,6 @@ class DIAEnumSymbols : public IPDBEnumChildren<PDBSymbol> {
3333
CComPtr<IDiaEnumSymbols> Enumerator;
3434
};
3535
}
36+
}
3637

3738
#endif

include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
1515

1616
namespace llvm {
17+
namespace pdb {
1718
class DIALineNumber : public IPDBLineNumber {
1819
public:
1920
explicit DIALineNumber(CComPtr<IDiaLineNumber> DiaLineNumber);
@@ -35,5 +36,5 @@ class DIALineNumber : public IPDBLineNumber {
3536
CComPtr<IDiaLineNumber> LineNumber;
3637
};
3738
}
38-
39+
}
3940
#endif

include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
1515

1616
namespace llvm {
17+
namespace pdb {
1718
class DIASession;
1819
class DIARawSymbol : public IPDBRawSymbol {
1920
public:
@@ -202,5 +203,6 @@ class DIARawSymbol : public IPDBRawSymbol {
202203
CComPtr<IDiaSymbol> Symbol;
203204
};
204205
}
206+
}
205207

206208
#endif

include/llvm/DebugInfo/PDB/DIA/DIASession.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
namespace llvm {
1717
class StringRef;
1818

19+
namespace pdb {
1920
class DIASession : public IPDBSession {
2021
public:
2122
explicit DIASession(CComPtr<IDiaSession> DiaSession);
@@ -64,5 +65,5 @@ class DIASession : public IPDBSession {
6465
CComPtr<IDiaSession> Session;
6566
};
6667
}
67-
68+
}
6869
#endif

include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "llvm/DebugInfo/PDB/IPDBSourceFile.h"
1515

1616
namespace llvm {
17+
namespace pdb {
1718
class DIASession;
1819

1920
class DIASourceFile : public IPDBSourceFile {
@@ -35,5 +36,6 @@ class DIASourceFile : public IPDBSourceFile {
3536
CComPtr<IDiaSourceFile> SourceFile;
3637
};
3738
}
39+
}
3840

3941
#endif

0 commit comments

Comments
 (0)