[Libreoffice-commits] core.git: compilerplugins/clang

Noel Grandin noel.grandin at collabora.co.uk
Tue Apr 11 11:10:09 UTC 2017


 compilerplugins/clang/constantparam.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit f762a7772b1faa5855b07ca78b221edbaba53b59
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date:   Tue Apr 11 10:17:02 2017 +0200

    loplugin constantparam, ignore variadic methods
    
    Change-Id: Ieabb020406d5a381dd9cbace3b1e4cc434857d54

diff --git a/compilerplugins/clang/constantparam.cxx b/compilerplugins/clang/constantparam.cxx
index f5a3d5317dd1..d748919b0c7d 100644
--- a/compilerplugins/clang/constantparam.cxx
+++ b/compilerplugins/clang/constantparam.cxx
@@ -97,6 +97,8 @@ void ConstantParam::addToCallSet(const FunctionDecl* functionDecl, int paramInde
 
     if (!functionDecl->getNameInfo().getLoc().isValid())
         return;
+    if (functionDecl->isVariadic())
+        return;
     if (ignoreLocation(functionDecl))
         return;
     // ignore stuff that forms part of the stable URE interface


More information about the Libreoffice-commits mailing list