Skip to content

Commit

Permalink
ci: fix misc-tooling, V self compilation with g++ and -std=c++11
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Sep 30, 2023
1 parent f5fc0f9 commit 413da8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/stdatomic/nix/cpp/gen.v
Expand Up @@ -75,7 +75,7 @@ fn get_search_paths(cc string) []string {
return search_path.map(os.real_path(it.all_before('(').trim_space()))
}

fn find_file(search_paths []string, file string) ?string {
fn find_file(search_paths []string, file string) !string {
for search_path in search_paths {
if os.exists(os.join_path(search_path, file)) {
return os.join_path(search_path, file)
Expand Down

0 comments on commit 413da8b

Please sign in to comment.