aboutsummaryrefslogtreecommitdiffstats
path: root/CompilerState.h
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-07-01 06:16:01 +0800
committerGav Wood <i@gavwood.com>2014-07-01 06:16:01 +0800
commit3174a5e0c6072004159326f000c0e1dfe6703b00 (patch)
tree34d20ebc891413a5b16d92ddfa2c7e2e19c99f39 /CompilerState.h
parente65c3ff17de66cfd7d80ef78abba09c6ecf35ded (diff)
downloaddexon-solidity-3174a5e0c6072004159326f000c0e1dfe6703b00.tar
dexon-solidity-3174a5e0c6072004159326f000c0e1dfe6703b00.tar.gz
dexon-solidity-3174a5e0c6072004159326f000c0e1dfe6703b00.tar.bz2
dexon-solidity-3174a5e0c6072004159326f000c0e1dfe6703b00.tar.lz
dexon-solidity-3174a5e0c6072004159326f000c0e1dfe6703b00.tar.xz
dexon-solidity-3174a5e0c6072004159326f000c0e1dfe6703b00.tar.zst
dexon-solidity-3174a5e0c6072004159326f000c0e1dfe6703b00.zip
Fixed problem with alloc.
Diffstat (limited to 'CompilerState.h')
-rw-r--r--CompilerState.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/CompilerState.h b/CompilerState.h
index f8f7ce81..5dcde614 100644
--- a/CompilerState.h
+++ b/CompilerState.h
@@ -48,6 +48,7 @@ struct CompilerState
std::map<std::string, CodeFragment> outers;
std::map<std::pair<std::string, unsigned>, Macro> macros;
std::vector<boost::spirit::utree> treesToKill;
+ bool usedAlloc = false;
};
}