SCAGEN: missing whitespace causes death-loop
--------------------------------------------

                 Key: TUSCANY-1092
                 URL: https://issues.apache.org/jira/browse/TUSCANY-1092
             Project: Tuscany
          Issue Type: Bug
          Components: C++ SCA
    Affects Versions: Cpp-M3, Cpp-current
            Reporter: Andrew Borley
            Priority: Minor
             Fix For: Cpp-M3


SCAGEN gets stuck in a loop if you have no whitespace between the class name 
and the following brace in the C++ header files. 
Code like this:

class Sample{
public:
        virtual void start() = 0;
};

displays the problem with SCAGEN. But slightly changing the code to:

class Sample {
public:
        virtual void start() = 0;
};

or to:

class Sample
{
public:
        virtual void start() = 0;
};

makes SCAGEN work again!

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to