diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-02-28 15:40:57 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-02-28 15:40:57 -0500 |
| commit | 02f3a834b014da10e487cb3150120c0dc0a4c119 (patch) | |
| tree | 8e734bd4a9452b504d96f419f4766cbfe664ad97 /src/os.cpp | |
| parent | 5424b4320def194b205dcfe8e937035d2d80ae09 (diff) | |
| download | zig-02f3a834b014da10e487cb3150120c0dc0a4c119.tar.gz zig-02f3a834b014da10e487cb3150120c0dc0a4c119.zip | |
struct types get fully qualified names
and function symbol names become fully qualified
Diffstat (limited to 'src/os.cpp')
| -rw-r--r-- | src/os.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os.cpp b/src/os.cpp index 732baea359..e418aa2c29 100644 --- a/src/os.cpp +++ b/src/os.cpp @@ -264,7 +264,7 @@ void os_path_join(Buf *dirname, Buf *basename, Buf *out_full_path) { buf_append_buf(out_full_path, basename); } -int os_path_real(Buf *rel_path, Buf *out_abs_path) { +Error os_path_real(Buf *rel_path, Buf *out_abs_path) { #if defined(ZIG_OS_WINDOWS) buf_resize(out_abs_path, 4096); if (_fullpath(buf_ptr(out_abs_path), buf_ptr(rel_path), buf_len(out_abs_path)) == nullptr) { |
