diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-02-10 16:12:14 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-02-10 16:12:14 +0000 |
| commit | 73d6a55f5c96459d30eca5747d1458bcf6e9fec4 (patch) | |
| tree | 6351ed11cfbcf08c9a52498bbf8662083886fe89 /code | |
| parent | f18ae89931526df578956e63dfab288920b59873 (diff) | |
Remove need for `type` keyword
Diffstat (limited to 'code')
| -rw-r--r-- | code/http_test.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/http_test.odin b/code/http_test.odin index e6c5f1173..ca76e1c55 100644 --- a/code/http_test.odin +++ b/code/http_test.odin @@ -3,7 +3,7 @@ #foreign_system_library ws2 "Ws2_32.lib" when ODIN_OS == "windows"; -SOCKET :: type uint; +SOCKET :: #type uint; INVALID_SOCKET :: ~(cast(SOCKET)0); AF :: enum i32 { |