diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2021-05-17 23:35:55 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2021-05-17 23:35:55 +0200 |
| commit | 63feccd209b69b913f3a2fe33fa993dbe0af909f (patch) | |
| tree | b5fc2788fd29b90a9feb13c8b3b5017ee6d6d483 /src/index | |
| parent | 98609fccd73cb464dd4659702319dab2fe1c61c1 (diff) | |
handle the parser changes in core + linux still not working
Diffstat (limited to 'src/index')
| -rw-r--r-- | src/index/build.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index/build.odin b/src/index/build.odin index b464ce9..c45fa36 100644 --- a/src/index/build.odin +++ b/src/index/build.odin @@ -115,7 +115,7 @@ build_static_index :: proc(allocator := context.allocator, config: ^common.Confi file := ast.File { fullpath = fullpath, - src = data, + src = string(data), pkg = pkg, }; |