summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
diff options
context:
space:
mode:
authorEugene Zelenko <eugene.zelenko@gmail.com>2015-10-21 01:03:30 +0000
committerEugene Zelenko <eugene.zelenko@gmail.com>2015-10-21 01:03:30 +0000
commit4c3f2b944689bdb23e929ab27815bbc87c20c035 (patch)
treebb0b2e6e539fc4a64edae76224c1185e9c0af8eb /lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
parent9a6940cef4c7f9c2e33fbbd84b775e5b4d5ffd99 (diff)
downloadbcm5719-llvm-4c3f2b944689bdb23e929ab27815bbc87c20c035.tar.gz
bcm5719-llvm-4c3f2b944689bdb23e929ab27815bbc87c20c035.zip
Fix Clang-tidy modernize-use-override warnings in some files in source/Plugins; other minor fixes.
Differential Revision: http://reviews.llvm.org/D13916 llvm-svn: 250872
Diffstat (limited to 'lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h')
-rw-r--r--lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h b/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
index daee1b86c30..0e03d013d04 100644
--- a/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
+++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
@@ -10,13 +10,17 @@
#ifndef liblldb_ClangPersistentVariables_h_
#define liblldb_ClangPersistentVariables_h_
+// C Includes
+// C++ Includes
+// Other libraries and framework includes
+#include "llvm/ADT/DenseMap.h"
+
+// Project includes
#include "ClangExpressionVariable.h"
#include "ClangModulesDeclVendor.h"
#include "lldb/Expression/ExpressionVariable.h"
-#include "llvm/ADT/DenseMap.h"
-
namespace lldb_private
{
@@ -31,14 +35,10 @@ namespace lldb_private
class ClangPersistentVariables : public PersistentExpressionState
{
public:
-
- //----------------------------------------------------------------------
- /// Constructor
- //----------------------------------------------------------------------
- ClangPersistentVariables ();
-
- ~ClangPersistentVariables () { }
-
+ ClangPersistentVariables();
+
+ ~ClangPersistentVariables() override = default;
+
//------------------------------------------------------------------
// llvm casting support
//------------------------------------------------------------------
@@ -101,6 +101,6 @@ private:
///< priority source for macros.
};
-}
+} // namespace lldb_private
-#endif
+#endif // liblldb_ClangPersistentVariables_h_
OpenPOWER on IntegriCloud