aboutsummaryrefslogtreecommitdiff
path: root/build/module
diff options
context:
space:
mode:
Diffstat (limited to 'build/module')
-rw-r--r--build/module4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/module b/build/module
index 81595d3..6a7a8a7 100644
--- a/build/module
+++ b/build/module
@@ -13,8 +13,8 @@ namespace build
class scope;
class location;
- using module_load_function = void (scope& root, scope& base, const location&);
- using module_map = std::unordered_map<std::string, module_load_function*>;
+ using module_init_function = void (scope& root, scope& base, const location&);
+ using module_map = std::unordered_map<std::string, module_init_function*>;
extern module_map modules;
}