Dev-Cpp
Dev-Cpp copied to clipboard
the question of the struct code completion
in bloodshed Dev-cpp(ver 5.11) the struct will code completion end with ';' like this:
struct foo{
};
but in the Embarcadero Dev-cpp(ver 6.2) the struct not end with ';' like this:
struct foo{
}
add: if put the '{' after structname and Space,the ';' is completed like this:
struct foo {
};
on Orwell-devcpp this works normal 😄