summaryrefslogtreecommitdiffstats
path: root/libdimension/tests/tests.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2014-06-07 16:58:20 -0400
committerTavian Barnes <tavianator@tavianator.com>2014-06-07 16:58:20 -0400
commita22560c3ccaf19261b5c40fdcab36d2d22426986 (patch)
tree85a39e016ac972f54e282eedcf32b26da6f67822 /libdimension/tests/tests.h
parentbfadc2ee359f10842da21336795e54f24a2746e3 (diff)
downloaddimension-a22560c3ccaf19261b5c40fdcab36d2d22426986.tar.xz
Use // comments when possible.
Diffstat (limited to 'libdimension/tests/tests.h')
-rw-r--r--libdimension/tests/tests.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libdimension/tests/tests.h b/libdimension/tests/tests.h
index 0b8bfce..6e9ad21 100644
--- a/libdimension/tests/tests.h
+++ b/libdimension/tests/tests.h
@@ -24,19 +24,19 @@
#include <check.h>
#ifdef __cplusplus
-/* We've been included from a C++ file; mark everything here as extern "C" */
+// We've been included from a C++ file; mark everything here as extern "C"
extern "C" {
#endif
-/** @internal Map to known test cases from their names. */
+/// @internal Map to known test cases from their names.
extern dmnsn_dictionary* dmnsn_test_cases;
-/** @internal Get the test case with the given name, possibly creating it. */
+/// @internal Get the test case with the given name, possibly creating it.
TCase *dmnsn_get_test_case(const char* name);
-/** @internal Default test fixture. */
+/// @internal Default test fixture.
void dmnsn_test_setup(void);
-/** @internal Default test fixture. */
+/// @internal Default test fixture.
void dmnsn_test_teardown(void);
/**
@@ -121,11 +121,11 @@ typedef struct dmnsn_display dmnsn_display;
dmnsn_display *dmnsn_new_display(const dmnsn_canvas *canvas);
void dmnsn_delete_display(dmnsn_display *display);
-/* Flush the GL buffers */
+// Flush the GL buffers
void dmnsn_display_flush(dmnsn_display *display);
#ifdef __cplusplus
}
#endif
-#endif /* TESTS_H */
+#endif // TESTS_H