1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

C++ code-style

Signed-off-by: Philipp Jungkamp <Philipp.Jungkamp@opal-rt.com>
This commit is contained in:
Philipp Jungkamp 2023-06-20 15:36:13 +02:00
parent 260280ece0
commit 0473821d95

View file

@ -111,7 +111,7 @@ protected:
std::cout << " - " << std::left << std::setw(18) << p->getName() << p->getDescription() << std::endl;
}
std::cout << std::endl;
#endif /* WITH_HOOKS */
#endif // WITH_HOOKS
#ifdef WITH_API
std::cout << "Supported API commands:" << std::endl;
@ -120,7 +120,7 @@ protected:
std::cout << " - " << std::left << std::setw(18) << p->getName() << p->getDescription() << std::endl;
}
std::cout << std::endl;
#endif /* WITH_API */
#endif // WITH_API
printCopyright();
}
@ -204,9 +204,9 @@ protected:
}
};
} /* namespace tools */
} /* namespace node */
} /* namespace villas */
} // namespace tools
} // namespace node
} // namespace villas
int main(int argc, char *argv[])
{