FeatureConfig: align text

pull/975/merge
Nils Maier 2017-07-26 06:19:31 +02:00
parent 94a47ec428
commit 086500cc21
1 changed files with 2 additions and 2 deletions

View File

@ -291,11 +291,11 @@ std::string usedCompilerAndPlatform()
#endif // !defined(__GNUG__) #endif // !defined(__GNUG__)
rv << "\n built by " << BUILD; rv << "\n built by " << BUILD;
if (strcmp(BUILD, TARGET)) { if (strcmp(BUILD, TARGET)) {
rv << "\n targeting " << TARGET; rv << "\n targeting " << TARGET;
} }
rv << "\n on " << __DATE__ << " " << __TIME__; rv << "\n on " << __DATE__ << " " << __TIME__;
return rv.str(); return rv.str();
} }