fix: Clang fix

This commit is contained in:
Akatsuki Levi 2024-03-15 18:23:54 -03:00
parent 09c26cac1c
commit 777587ef0e
No known key found for this signature in database
GPG key ID: BB4057BB9E0F1C7A
93 changed files with 254 additions and 253 deletions

View file

@ -186,8 +186,8 @@ Function::Function(ObjectPool<Block>& block_pool, Location start_address)
CFG::CFG(Environment& env_, ObjectPool<Block>& block_pool_, Location start_address,
bool exits_to_dispatcher_)
: env{env_}, block_pool{block_pool_}, program_start{start_address}, exits_to_dispatcher{
exits_to_dispatcher_} {
: env{env_}, block_pool{block_pool_}, program_start{start_address},
exits_to_dispatcher{exits_to_dispatcher_} {
if (exits_to_dispatcher) {
dispatch_block = block_pool.Create(Block{});
dispatch_block->begin = {};