Pure formatting, no behaviour change. PKG landed .clang-format (Google base, 4-space indent, 100 cols); this brings util/ and the test harness into conformance so `clang-format --dry-run -Werror` is clean. Build and all six test binaries unchanged and green. Co-Authored-By: Claude Sonnet 5 <[email protected]> Claude-Session: https://claude.ai/code/session_01HPPSGhiArbvQgwC2DNiURS
7 lines
134 B
C++
7 lines
134 B
C++
// vtest_main.cpp — shared entry point for every CORE test binary.
|
|
#include "vtest.hpp"
|
|
|
|
int main() {
|
|
return ::vt::run_all();
|
|
}
|