Changed some recently added //+ usages to #+ and also fixed some //+ usages in some code generators.

This commit is contained in:
Karl Zylinski
2024-09-17 19:39:48 +02:00
parent 093ade0504
commit 29fedc1808
8 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -902,7 +902,7 @@ static void verify_error_helpers(ofstream& out) {
}
static void test_core_sys_windows(ofstream& out) {
out << "//+build windows" << endl
out << "#+build windows" << endl
<< "package " << __func__
<< " // generated by " << path(__FILE__).filename().replace_extension("").string() << endl
<< endl
@@ -264,7 +264,7 @@ write_test_suite :: proc(example_tests: []Example_Test) {
test_runner := strings.builder_make()
strings.write_string(&test_runner,
`//+private
`#+private
package documentation_verification
import "core:os"