Showing with 3 additions and 3 deletions.
  1. +1 −1 src/core/stdcpp/exception.d
  2. +2 −2 src/core/stdcpp/typeinfo.d
2 changes: 1 addition & 1 deletion src/core/stdcpp/exception.d
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ else version (CRuntime_Glibc)
{
this();
//virtual ~this();
const(char)* what() const;
override const(char)* what() const;
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/core/stdcpp/typeinfo.d
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ else version (CRuntime_Glibc)
{
this();
//~this();
const(char)* what() const;
override const(char)* what() const;
}

class bad_typeid : core.stdcpp.exception.std.exception
{
this();
//~this();
const(char)* what() const;
override const(char)* what() const;
}
}
}