Skip to content

Commit 940b6d5

Browse files
Fix how the comments are structured
1 parent 4885420 commit 940b6d5

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

Diff for: src/main.zig

+8-15
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,10 @@
1-
//--------------------------------------------------------------------------------------------------
1+
// ==============================================================================
22
//
33
// SIMD math library for game developers
44
// https://github.com/michal-z/zig-gamedev/tree/main/libs/zmath
55
//
6-
// See zmath.zig for more details.
76
// See util.zig for additional functionality.
87
//
9-
//--------------------------------------------------------------------------------------------------
10-
pub const util = @import("util.zig");
11-
12-
// ensure transitive closure of test coverage
13-
comptime {
14-
_ = util;
15-
}
16-
17-
// ==============================================================================
18-
//
19-
// SIMD math library for game developers
20-
// https://github.com/michal-z/zig-gamedev/tree/main/libs/zmath
21-
//
228
// Should work on all OSes supported by Zig. Works on x86_64 and ARM.
239
// Provides ~140 optimized routines and ~70 extensive tests.
2410
// Can be used with any graphics API.
@@ -278,6 +264,13 @@ comptime {
278264
//
279265
// ==============================================================================
280266

267+
pub const util = @import("util.zig");
268+
269+
// ensure transitive closure of test coverage
270+
comptime {
271+
_ = util;
272+
}
273+
281274
// Fundamental types
282275
pub const F32x4 = @Vector(4, f32);
283276
pub const F32x8 = @Vector(8, f32);

0 commit comments

Comments
 (0)