Embarcadero / Dev-Cpp

A fast, portable, simple, and free C/C++ IDE
https://www.embarcadero.com/free-tools/dev-cpp
GNU General Public License v2.0
2.61k stars 280 forks source link

the question of the struct code completion #84

Open brokenpoems opened 4 years ago

brokenpoems commented 4 years ago

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{
}
brokenpoems commented 4 years ago

add: if put the '{' after structname and Space,the ';' is completed like this:

struct foo {
};
letangphuquy commented 3 years ago

on Orwell-devcpp this works normal 😄