diff options
Diffstat (limited to 'libbuild2/target-state.hxx')
-rw-r--r-- | libbuild2/target-state.hxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libbuild2/target-state.hxx b/libbuild2/target-state.hxx index ea7015c..a6106f7 100644 --- a/libbuild2/target-state.hxx +++ b/libbuild2/target-state.hxx @@ -43,8 +43,14 @@ namespace build2 return l; } - LIBBUILD2_SYMEXPORT ostream& - operator<< (ostream&, target_state); // target.cxx + LIBBUILD2_SYMEXPORT string + to_string (target_state); // target.cxx + + inline ostream& + operator<< (ostream& o, target_state ts) + { + return o << to_string (ts); + } } #endif // LIBBUILD2_TARGET_STATE_HXX |