Browse Source

magnum-info: indent with 4, not 3 spaces.

pull/7/head
Vladimír Vondruš 13 years ago
parent
commit
bc48107d5a
  1. 2
      src/Platform/magnum-info.cpp

2
src/Platform/magnum-info.cpp

@ -95,7 +95,7 @@ MagnumInfo::MagnumInfo(int& argc, char** argv): WindowlessGlxApplication(argc, a
for(const auto& extension: Extension::extensions(versions[i])) { for(const auto& extension: Extension::extensions(versions[i])) {
std::string extensionName = extension.string(); std::string extensionName = extension.string();
Debug d; Debug d;
d << " " << extensionName << std::string(60-extensionName.size(), ' '); d << " " << extensionName << std::string(60-extensionName.size(), ' ');
if(c->isExtensionSupported(extension)) if(c->isExtensionSupported(extension))
d << "SUPPORTED"; d << "SUPPORTED";
else if(c->isVersionSupported(extension.requiredVersion())) else if(c->isVersionSupported(extension.requiredVersion()))

Loading…
Cancel
Save