aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-10-10 23:57:43 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-10-10 23:57:43 -0700
commit1f055ef47236f931a48f73ba98daea26bbe575ce (patch)
tree29001f40d81337327b2eb0d9bbbbbb54b65ad755 /toolsrc/include
parent9e1d40e4dc313de2e6de0ac4f60a2df224215ae2 (diff)
downloadvcpkg-1f055ef47236f931a48f73ba98daea26bbe575ce.tar.gz
vcpkg-1f055ef47236f931a48f73ba98daea26bbe575ce.zip
[Stopwatch] start()/stop() return const &
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/Stopwatch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/Stopwatch.h b/toolsrc/include/Stopwatch.h
index 2bd5c31bf..105a4b1ee 100644
--- a/toolsrc/include/Stopwatch.h
+++ b/toolsrc/include/Stopwatch.h
@@ -14,9 +14,9 @@ namespace vcpkg
bool isRunning() const;
- Stopwatch& start();
+ const Stopwatch& start();
- Stopwatch& stop();
+ const Stopwatch& stop();
Stopwatch& reset();