diff options
| author | gingerBill <bill@gingerbill.org> | 2017-11-04 00:16:54 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2017-11-04 00:16:54 +0000 |
| commit | 6bc5584addffa20639d5bc7dcc789f76a298e1e5 (patch) | |
| tree | d7b0816c7b2a1d70bd0e7f90ed576a9bf6c8fb3f /src | |
| parent | 121f0185d6923c84d64ee75326d15013eb5d1fe0 (diff) | |
Fix fmt printing `uintptr` type
Diffstat (limited to 'src')
| -rw-r--r-- | src/ir.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ir.cpp b/src/ir.cpp index 4056dc88f..e015a7056 100644 --- a/src/ir.cpp +++ b/src/ir.cpp @@ -376,12 +376,12 @@ enum irParamPasskind { }; struct irValueParam { - irParamPasskind kind; - irProcedure * parent; - Entity * entity; - Type * type; - Type * original_type; - Array<irValue *> referrers; + irParamPasskind kind; + irProcedure * parent; + Entity * entity; + Type * type; + Type * original_type; + Array<irValue *> referrers; }; struct irValue { |