mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-14 19:25:48 +00:00
Merge pull request #349 from jlmjlm/nosemi-postfunc
Remove semicolons from after } that close functons.
This commit is contained in:
commit
63b6576eb6
@ -554,7 +554,7 @@ EX string geometry_name() {
|
||||
return geometry_name(ginf[geometry].cclass) + dim_name();
|
||||
else
|
||||
return geometry_name(ginf[geometry].cclass);
|
||||
};
|
||||
}
|
||||
|
||||
EX void select_quotient_screen() {
|
||||
cmode = sm::SIDE | sm::MAYDARK;
|
||||
|
@ -3412,7 +3412,7 @@ EX bool lie_movement_available() {
|
||||
if(nonisotropic && !embedded_plane) return true;
|
||||
if(mhyperbolic && bt::in()) return true;
|
||||
return false;
|
||||
};
|
||||
}
|
||||
|
||||
EX hyperpoint lie_log(const shiftpoint h1) {
|
||||
hyperpoint h = unshift(h1);
|
||||
|
4
reg3.cpp
4
reg3.cpp
@ -82,12 +82,12 @@ EX }
|
||||
transmatrix sfix_rgpushxto0(hyperpoint h) {
|
||||
if(stretch::applicable() && !fake::in()) return stretch::translate(h);
|
||||
return rgpushxto0(h);
|
||||
};
|
||||
}
|
||||
|
||||
transmatrix sfix_gpushxto0(hyperpoint h) {
|
||||
if(stretch::applicable() && !fake::in()) return stretch::itranslate(h);
|
||||
return gpushxto0(h);
|
||||
};
|
||||
}
|
||||
|
||||
#if MAXMDIM >= 4
|
||||
void subcellshape::compute_sub() {
|
||||
|
Loading…
Reference in New Issue
Block a user