aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2017-11-04 00:16:54 +0000
committergingerBill <bill@gingerbill.org>2017-11-04 00:16:54 +0000
commit6bc5584addffa20639d5bc7dcc789f76a298e1e5 (patch)
treed7b0816c7b2a1d70bd0e7f90ed576a9bf6c8fb3f /src
parent121f0185d6923c84d64ee75326d15013eb5d1fe0 (diff)
Fix fmt printing `uintptr` type
Diffstat (limited to 'src')
-rw-r--r--src/ir.cpp12
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 {