Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Add missing override attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
yebblies committed Mar 21, 2016
1 parent 5fe4cd9 commit eb152d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/stdcpp/exception.d
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
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;
}
}
}

0 comments on commit eb152d5

Please sign in to comment.