diff options
author | Daniel Malea <daniel.malea@intel.com> | 2012-12-07 22:21:08 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2012-12-07 22:21:08 +0000 |
commit | a85e6b6c323d97c3c5b3c2b45f15ef3066aa9e79 (patch) | |
tree | 31449c19dec1fb8ed688c82c056fc1dc880ba6ae /lldb/source/Interpreter/CommandObjectScript.h | |
parent | 84b2a795705d994d2a333d49a00ff7132627cbe3 (diff) | |
download | bcm5719-llvm-a85e6b6c323d97c3c5b3c2b45f15ef3066aa9e79.tar.gz bcm5719-llvm-a85e6b6c323d97c3c5b3c2b45f15ef3066aa9e79.zip |
Fix a few more clang (3.2) warnings on Linux:
- remove unused members
- add NO_PEDANTIC to selected Makefiles
- fix return values (removed NULL as needed)
- disable warning about four-char-constants
- remove unneeded const from operator*() declaration
- add missing lambda function return types
- fix printf() with no format string
- change sizeof to use a type name instead of variable name
- fix Linux ProcessMonitor.cpp to be 32/64 bit friendly
- disable warnings emitted by swig-generated C++ code
Patch by Matt Kopec!
llvm-svn: 169645
Diffstat (limited to 'lldb/source/Interpreter/CommandObjectScript.h')
-rw-r--r-- | lldb/source/Interpreter/CommandObjectScript.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/source/Interpreter/CommandObjectScript.h b/lldb/source/Interpreter/CommandObjectScript.h index c812539e9ef..fd55fc44a46 100644 --- a/lldb/source/Interpreter/CommandObjectScript.h +++ b/lldb/source/Interpreter/CommandObjectScript.h @@ -35,9 +35,6 @@ public: protected: virtual bool DoExecute (const char *command, CommandReturnObject &result); - -private: - lldb::ScriptLanguage m_script_lang; }; } // namespace lldb_private |