Standards: remove useless semicolon after function

This commit is contained in:
Edoardo Prezioso 2013-01-22 00:13:36 +01:00
parent 096cb1bd88
commit f68d6f7c95
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ struct Standards {
bool posix;
/** This constructor clear all the variables **/
Standards() : c(C11), cpp(CPP11), posix(false) {};
Standards() : c(C11), cpp(CPP11), posix(false) {}
};
/// @}