You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
structtest {
test(int x, int d, std::string dave) :
_x(x),
_d(d),
_dave(dave)
{
}
int _x;
int _d;
std::string _dave;
};
structtest2 {
test2(int x, int d, std::string dave) :
_x(x)
, _d(d)
, _dave(dave)
{
}
int _x;
int _d;
std::string _dave;
};
I believe that github uses this repository for its syntax highlighter. Looking above, both pieces of code are the same but show different highlighting. test2 is the broken highlighted version
The text was updated successfully, but these errors were encountered:
DanielJamesCollier
changed the title
Syntax highligting issue: initialisation lists
[C++] Syntax highligting issue: initialisation lists
Feb 5, 2017
I believe that github uses this repository for its syntax highlighter. Looking above, both pieces of code are the same but show different highlighting. test2 is the broken highlighted version
The text was updated successfully, but these errors were encountered: