GenerateExportHeader test: add newlines before end of file

This commit is contained in:
Rolf Eike Beer 2012-01-18 00:01:08 +01:00
parent a6518c30e0
commit 0541a03a4c
6 changed files with 6 additions and 6 deletions

View File

@ -10,4 +10,4 @@ DepA DepC::getA()
{ {
DepA a; DepA a;
return a; return a;
} }

View File

@ -6,4 +6,4 @@ int main(int, char**)
SomeClass sc; SomeClass sc;
sc.someMethod(); sc.someMethod();
return 0; return 0;
} }

View File

@ -6,4 +6,4 @@ int main(int, char**)
SomeClass sc; SomeClass sc;
sc.someMethod(); sc.someMethod();
return 0; return 0;
} }

View File

@ -4,4 +4,4 @@
void SomeClass::someMethod() const void SomeClass::someMethod() const
{ {
} }

View File

@ -5,4 +5,4 @@ int main(int argc, char **argv)
{ {
UsePrefixClass upc; UsePrefixClass upc;
return upc.someMethod(); return upc.someMethod();
} }

View File

@ -4,4 +4,4 @@
int UsePrefixClass::someMethod() const int UsePrefixClass::someMethod() const
{ {
return 0; return 0;
} }