summaryrefslogtreecommitdiffstats
path: root/compilerplugins/clang/checkconfigmacros.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-20 10:26:46 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-20 10:26:46 +0200
commit4c0198b02c4a514bc61772d8c671c47c9553fd7a (patch)
tree33a5a91f23f075db507cb88672d96ea760bdc0ec /compilerplugins/clang/checkconfigmacros.cxx
parentloplugin:unusedfields fix more false + (diff)
downloadcore-4c0198b02c4a514bc61772d8c671c47c9553fd7a.tar.gz
core-4c0198b02c4a514bc61772d8c671c47c9553fd7a.zip
reformat some loplugin code
to match our more normal conventions. Also drop the 'using std' and some other cruft Change-Id: I02ef81c5427188bc03a20b157a57a900a9d7bf0d
Diffstat (limited to 'compilerplugins/clang/checkconfigmacros.cxx')
-rw-r--r--compilerplugins/clang/checkconfigmacros.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/checkconfigmacros.cxx b/compilerplugins/clang/checkconfigmacros.cxx
index d42adb08cc67..46cb35a450c3 100644
--- a/compilerplugins/clang/checkconfigmacros.cxx
+++ b/compilerplugins/clang/checkconfigmacros.cxx
@@ -48,7 +48,7 @@ class CheckConfigMacros
enum { isPPCallback = true };
private:
void checkMacro( const Token& macroToken, SourceLocation location );
- std::set< string > configMacros;
+ std::set< std::string > configMacros;
};
CheckConfigMacros::CheckConfigMacros( const InstantiationData& data )