aboutsummaryrefslogtreecommitdiff
path: root/build2/function.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/function.cxx')
-rw-r--r--build2/function.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/build2/function.cxx b/build2/function.cxx
index 8cfb857..c3a08c1 100644
--- a/build2/function.cxx
+++ b/build2/function.cxx
@@ -301,19 +301,21 @@ namespace build2
//
function_map functions;
- void builtin_functions (); // functions-builtin.cxx
- void path_functions (); // functions-path.cxx
- void process_path_functions (); // functions-process-path.cxx
- void string_functions (); // functions-string.cxx
+ void builtin_functions (); // functions-builtin.cxx
+ void string_functions (); // functions-string.cxx
+ void path_functions (); // functions-path.cxx
+ void process_path_functions (); // functions-process-path.cxx
+ void target_triplet_functions (); // functions-target-triplet.cxx
struct functions_init
{
functions_init ()
{
builtin_functions ();
+ string_functions ();
path_functions ();
process_path_functions ();
- string_functions ();
+ target_triplet_functions ();
}
};