aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bytecode/Format.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Bytecode/Format.h')
-rw-r--r--include/llvm/Bytecode/Format.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Bytecode/Format.h b/include/llvm/Bytecode/Format.h
index 79cf9f0..380f4df 100644
--- a/include/llvm/Bytecode/Format.h
+++ b/include/llvm/Bytecode/Format.h
@@ -15,6 +15,8 @@
#ifndef LLVM_BYTECODE_FORMAT_H
#define LLVM_BYTECODE_FORMAT_H
+namespace llvm {
+
class BytecodeFormat { // Throw the constants into a poorman's namespace...
BytecodeFormat(); // do not implement
public:
@@ -38,4 +40,7 @@ public:
BasicBlock = 0x31, // May contain many basic blocks
};
};
+
+} // End llvm namespace
+
#endif