We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
V self compilation with g++ and -std=c++11
1 parent f5fc0f9 commit 413da8bCopy full SHA for 413da8b
thirdparty/stdatomic/nix/cpp/gen.v
@@ -75,7 +75,7 @@ fn get_search_paths(cc string) []string {
75
return search_path.map(os.real_path(it.all_before('(').trim_space()))
76
}
77
78
-fn find_file(search_paths []string, file string) ?string {
+fn find_file(search_paths []string, file string) !string {
79
for search_path in search_paths {
80
if os.exists(os.join_path(search_path, file)) {
81
return os.join_path(search_path, file)
0 commit comments