Remove extra semicolons (#2170)
This is causing downstream users compiler errors if they have Werror or other particularly restrictive flags turned on.
This commit is contained in:
parent
0b66fa3b62
commit
b5757b9500
1 changed files with 4 additions and 4 deletions
|
|
@ -227,8 +227,8 @@ enum ComputeDerivativeMode {
|
||||||
|
|
||||||
class TIdMaps {
|
class TIdMaps {
|
||||||
public:
|
public:
|
||||||
TMap<TString, int>& operator[](int i) { return maps[i]; };
|
TMap<TString, int>& operator[](int i) { return maps[i]; }
|
||||||
const TMap<TString, int>& operator[](int i) const { return maps[i]; };
|
const TMap<TString, int>& operator[](int i) const { return maps[i]; }
|
||||||
private:
|
private:
|
||||||
TMap<TString, int> maps[EsiCount];
|
TMap<TString, int> maps[EsiCount];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue