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

Commit

Permalink
Move 'override' keyword to line head.
Browse files Browse the repository at this point in the history
  • Loading branch information
9rnsr committed Jul 9, 2012
1 parent df51083 commit 1529385
Show file tree
Hide file tree
Showing 35 changed files with 193 additions and 151 deletions.
12 changes: 6 additions & 6 deletions import/object.di
Expand Up @@ -107,11 +107,11 @@ class TypeInfo_Array : TypeInfo
override hash_t getHash(in void* p) @trusted;
override equals_t equals(in void* p1, in void* p2);
override int compare(in void* p1, in void* p2);
@property override size_t tsize() nothrow pure;
override @property size_t tsize() nothrow pure;
override void swap(void* p1, void* p2);
@property override TypeInfo next() nothrow pure;
@property override uint flags() nothrow pure;
@property override size_t talign() nothrow pure;
override @property TypeInfo next() nothrow pure;
override @property uint flags() nothrow pure;
override @property size_t talign() nothrow pure;
version (X86_64) override int argTypes(out TypeInfo arg1, out TypeInfo arg2);

TypeInfo value;
Expand Down Expand Up @@ -239,7 +239,7 @@ class MemberInfo_field : MemberInfo
{
this(string name, TypeInfo ti, size_t offset);

@property override string name() nothrow pure;
override @property string name() nothrow pure;
@property TypeInfo typeInfo() nothrow pure;
@property size_t offset() nothrow pure;
}
Expand All @@ -255,7 +255,7 @@ class MemberInfo_function : MemberInfo

this(string name, TypeInfo ti, void* fp, uint flags);

@property override string name() nothrow pure;
override @property string name() nothrow pure;
@property TypeInfo typeInfo() nothrow pure;
@property void* fp() nothrow pure;
@property uint flags() nothrow pure;
Expand Down
2 changes: 1 addition & 1 deletion src/core/demangle.d
Expand Up @@ -1450,7 +1450,7 @@ private struct Demangle
{
debug(info)
{
auto msg = e.toString;
auto msg = e.toString();
printf( "error: %.*s\n", cast(int) msg.length, msg.ptr );
}
if( dst.length < buf.length )
Expand Down

0 comments on commit 1529385

Please sign in to comment.