Skip to content

Commit

Permalink
[Refactor] Remove redundant parentheses around int.
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-sh committed Apr 1, 2015
1 parent a5ec252 commit e89a2b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/compilable/testfwdref.d
Expand Up @@ -324,8 +324,8 @@ class E12984b(T) : D12984b!int
}
}

static assert(__traits(classInstanceSize, B12984b) == (void*).sizeof * 2 + (int).sizeof);
static assert(__traits(classInstanceSize, C12984b) == (void*).sizeof * 2 + (int).sizeof);
static assert(__traits(classInstanceSize, B12984b) == (void*).sizeof * 2 + int.sizeof);
static assert(__traits(classInstanceSize, C12984b) == (void*).sizeof * 2 + int.sizeof);

/***************************************************/
// 13860
Expand Down

0 comments on commit e89a2b2

Please sign in to comment.