aboutsummaryrefslogtreecommitdiff
path: root/src/rule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rule.cpp')
-rw-r--r--src/rule.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rule.cpp b/src/rule.cpp
index 4426575..4919eef 100644
--- a/src/rule.cpp
+++ b/src/rule.cpp
@@ -8,7 +8,10 @@ Rule::~Rule()
8{ 8{
9} 9}
10 10
11void Rule::execute() 11StringList Rule::execute( Build &bld, StringList &lInput, PerformList &lPerf )
12{ 12{
13 StringList lOutput;
14
15 return lOutput;
13} 16}
14 17