Samsung / Dexter

Dexter is a static analysis platform to find and remove defects efficiently and immediately during the coding-time.
BSD 2-Clause "Simplified" License
56 stars 33 forks source link

[dexter-vs] Error during analysis: There is an error in XML document #192

Open KarolAntczak opened 5 years ago

KarolAntczak commented 5 years ago

Hi,

Attempting to analyse code below using dexter-vs plugin results in the following error:

Error during analysis: There is an error in XML document (8, 67).

The sample code:

template<typename IN, typename OUT>
class Rounder 
{
    IN number;

    public:
        Rounder(IN _number) : number(_number) {};
        OUT round() { return (OUT) this->number; }
};

int main()
{
   Rounder<float,int> a(3.1f);
   Rounder<double, int> b(41.452f);
    return 0;
}