Mentions légales du service

Skip to content
Snippets Groups Projects
Commit a6e173f6 authored by BRAMAS Berenger's avatar BRAMAS Berenger
Browse files

update the fenv class to considere 1 as true for bool

parent eb2be114
Branches
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ public:
if(!value){
return defaultValue;
}
return (strcmp(value,"TRUE") == 0) || (strcmp(value,"true") == 0 || (strcmp(value,"1") == 0);
return (strcmp(value,"TRUE") == 0) || (strcmp(value,"true") == 0) || (strcmp(value,"1") == 0);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment