diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2016-01-27 02:20:11 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty.wagner@gmail.com> | 2016-01-27 02:20:11 -0500 |
| commit | bbb74ee011e2b482e1895a513203c11affbac229 (patch) | |
| tree | 6137967b146d65cdfccf26df66d31ad9ddd5f520 /function.cpp | |
| parent | ad05dd2072917e2487dcd34dbc249b2a0efac589 (diff) | |
Implement platform type libraries, though types folder is not yet automatically copied
Diffstat (limited to 'function.cpp')
| -rw-r--r-- | function.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/function.cpp b/function.cpp index 9c8968b7..27d0795b 100644 --- a/function.cpp +++ b/function.cpp @@ -192,6 +192,12 @@ Ref<Type> Function::GetType() const } +void Function::ApplyImportedTypes(Symbol* sym) +{ + BNApplyImportedTypes(m_func, sym->GetSymbolObject()); +} + + Ref<FunctionGraph> Function::CreateFunctionGraph() { BNFunctionGraph* graph = BNCreateFunctionGraph(m_func); |
