diff options
Diffstat (limited to '')
-rw-r--r-- | src/rule.cpp | 5 |
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 | ||
11 | void Rule::execute() | 11 | StringList Rule::execute( Build &bld, StringList &lInput, PerformList &lPerf ) |
12 | { | 12 | { |
13 | StringList lOutput; | ||
14 | |||
15 | return lOutput; | ||
13 | } | 16 | } |
14 | 17 | ||