citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 75f083b671142e65ca16dcd9287d3bfa46451f37
parent 4333ea0b966442c213a1e3fbd4dead03dc5c916b
Author: Kyle Milz <kyle@windows.krwm.net>
Date:   Sun,  1 Jan 2017 21:35:06 -0800

src: use C++ style comments

Diffstat:
Msrc/inst_main.cc | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/inst_main.cc b/src/inst_main.cc @@ -36,11 +36,11 @@ main(int argc, char *argv[]) #ifdef _WIN32 // XXX: error checking base_name = PathFindFileNameA(argv[0]); -#else /* _WIN32 */ +#else // _WIN32 // Protect against argv[0] being an absolute path. if ((base_name = basename(argv[0])) == NULL) err(1, "basename"); -#endif /* _WIN32 */ +#endif // _WIN32 // Switch tool mode if we're called as 'citrun_inst'. if ((std::strcmp(base_name, "citrun_inst") == 0) ||