diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-22 20:11:27 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-22 20:11:27 +0000 |
commit | 78e257d3b2c6bc2e907a1e49b1debd6ad8f95650 (patch) | |
tree | b9b273293d93c390f714ce220d1983920a33c8ce /utility/stream_support.hpp | |
parent | Zoom the ISO mode follow camera out a bit (diff) | |
download | ilt-78e257d3b2c6bc2e907a1e49b1debd6ad8f95650.tar.bz2 ilt-78e257d3b2c6bc2e907a1e49b1debd6ad8f95650.tar.xz ilt-78e257d3b2c6bc2e907a1e49b1debd6ad8f95650.zip |
Arc stream operator is inline, say so
Diffstat (limited to 'utility/stream_support.hpp')
-rw-r--r-- | utility/stream_support.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utility/stream_support.hpp b/utility/stream_support.hpp index 7e070b0..d40313d 100644 --- a/utility/stream_support.hpp +++ b/utility/stream_support.hpp @@ -30,7 +30,7 @@ namespace std { return s; } - std::ostream & + inline std::ostream & operator<<(std::ostream & s, const Arc & arc) { return s << arc.first << " ↺ " << arc.second; |