summaryrefslogtreecommitdiffstats
path: root/compilerplugins
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-10-22 15:17:27 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-10-22 15:36:05 +0200
commit63476c346b6c33e9d097c75a0cf4935408c19aec (patch)
tree0552f9ecd7afb799cb749fa5a9a2fe87979ebc8c /compilerplugins
parentLet CppuniTest's unoexceptionprotector handle uncaught exceptions (diff)
downloadcore-63476c346b6c33e9d097c75a0cf4935408c19aec.tar.gz
core-63476c346b6c33e9d097c75a0cf4935408c19aec.zip
loplugin:staticvar ignore rtfkeywd.cxx for now
Change-Id: I2bd26bcad94aa905f0c87d92b43561855409e330
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/staticvar.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/compilerplugins/clang/staticvar.cxx b/compilerplugins/clang/staticvar.cxx
index 2383f61bbfd6..ca1a3b81d37e 100644
--- a/compilerplugins/clang/staticvar.cxx
+++ b/compilerplugins/clang/staticvar.cxx
@@ -82,7 +82,9 @@ public:
|| fn == SRCDIR "/vcl/source/app/svdata.cxx"
// I tried doing this, but got very weird unit test failures, apparently sorting this table
// disturbs some code elsewhere
- || fn == SRCDIR "/svx/source/unodraw/unoprov.cxx")
+ || fn == SRCDIR "/svx/source/unodraw/unoprov.cxx"
+ // aRTFTokenTab is ordered by useful grouping, so let it sort at runtime
+ || fn == SRCDIR "/svtools/source/svrtf/rtfkeywd.cxx")
return;
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
}