mirror of
https://github.com/open-goal/jak-project
synced 2026-08-08 10:34:30 -04:00
a870bb53e4
* new method of inline-array-class * up to new array * wip side effect stuff * prepare for pop barrier stuff * add pop barrier * add local vars hack to compiler * fix bug, make sort work * add test for array * bug fixes * another bug fix * refactoring env variable print for casts * more tweaks * updates * final cleanup * codacy fixes
8 lines
199 B
C++
8 lines
199 B
C++
#pragma once
|
|
#include <string>
|
|
#include "decompiler/Function/Function.h"
|
|
|
|
namespace decompiler {
|
|
std::string final_defun_out(const Function& func, const Env& env, const DecompilerTypeSystem& dts);
|
|
}
|