Skip to content

Commit

Permalink
Removing more non-static data member initializations.
Browse files Browse the repository at this point in the history
  • Loading branch information
sithhell committed Jul 26, 2015
1 parent 6f645fa commit f03b321
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -17,7 +17,7 @@
template <class T>
struct A
{
int a = 0;
int a;

explicit A(int a):
a(a)
Expand All @@ -39,7 +39,7 @@ struct A
template <class T>
struct B: A<T>
{
int b = 0;
int b;

explicit B(int b):
A<T>(b-1),
Expand Down

0 comments on commit f03b321

Please sign in to comment.