diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-11 17:45:13 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-11 17:45:13 +0000 |
commit | 78c3bcb582e42abeee68ba78f1cc6bd9df57958d (patch) | |
tree | 5a3711925cc9684c88bee76e1e94cf4264d31023 /llvm/tools/llvm-db | |
parent | 5c13812e2f846a98905378c8d3f04d0a9c1cff55 (diff) | |
download | bcm5719-llvm-78c3bcb582e42abeee68ba78f1cc6bd9df57958d.tar.gz bcm5719-llvm-78c3bcb582e42abeee68ba78f1cc6bd9df57958d.zip |
Make LLVMContext and LLVMContextImpl classes instead of structs.
llvm-svn: 78690
Diffstat (limited to 'llvm/tools/llvm-db')
-rw-r--r-- | llvm/tools/llvm-db/CLIDebugger.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-db/CLIDebugger.h b/llvm/tools/llvm-db/CLIDebugger.h index 349c5e69a36..0595b3debad 100644 --- a/llvm/tools/llvm-db/CLIDebugger.h +++ b/llvm/tools/llvm-db/CLIDebugger.h @@ -24,7 +24,7 @@ namespace llvm { struct SourceLanguage; class ProgramInfo; class RuntimeInfo; - struct LLVMContext; + class LLVMContext; /// CLIDebugger - This class implements the command line interface for the /// LLVM debugger. |