Code Monkey home page Code Monkey logo

Comments (1)

shevek avatar shevek commented on August 18, 2024
diff --git a/src/main/java/org/anarres/cpp/Preprocessor.java b/src/main/java/org/anarres/cpp/Preprocessor.java
index 18a0605..767fa32 100644
--- a/src/main/java/org/anarres/cpp/Preprocessor.java
+++ b/src/main/java/org/anarres/cpp/Preprocessor.java
@@ -782,16 +782,29 @@ public class Preprocessor implements Closeable {
                 /* space may still be true here, thus trailing space
                  * is stripped from arguments. */

+
                 if (args.size() != m.getArgs()) {
-                    error(tok,
-                            "macro " + m.getName()
-                            + " has " + m.getArgs() + " parameters "
-                            + "but given " + args.size() + " args");
-                    /* We could replay the arg tokens, but I
-                     * note that GNU cpp does exactly what we do,
-                     * i.e. output the macro name and chew the args.
-                     */
-                    return false;
+                    if (m.isVariadic()) {
+                        if (args.size() == m.getArgs() - 1)
+                            args.add(new Argument ());
+                        else {
+                            error(tok,
+                                  "variadic macro " + m.getName()
+                                  + " has at least " + (m.getArgs() - 1) + " parameters "
+                                  + "but given " + args.size() + " args");
+                            return false;
+                        }
+                    } else {
+                        error(tok,
+                              "macro " + m.getName()
+                              + " has " + m.getArgs() + " parameters "
+                              + "but given " + args.size() + " args");
+                        /* We could replay the arg tokens, but I
+                         * note that GNU cpp does exactly what we do,
+                         * i.e. output the macro name and chew the args.
+                         */
+                        return false;
+                    }
                 }

                 for (Argument a : args) {

from jcpp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.