aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorVidush <vidush.vishwanath@ettus.com>2018-06-26 12:06:42 -0700
committerMartin Braun <martin.braun@ettus.com>2018-06-26 13:51:34 -0700
commit523994c793c8e63f7b30657e06ce3588de0855c1 (patch)
tree934d1876e37bb4bcdc6433e6d71b7f7220661722 /host/include
parentf2896713d48f6c0bc19a859f5ad506e0ddd7ae61 (diff)
downloaduhd-523994c793c8e63f7b30657e06ce3588de0855c1.tar.gz
uhd-523994c793c8e63f7b30657e06ce3588de0855c1.tar.bz2
uhd-523994c793c8e63f7b30657e06ce3588de0855c1.zip
fixup! Time_spec: Add Operators
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/types/time_spec.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/include/uhd/types/time_spec.hpp b/host/include/uhd/types/time_spec.hpp
index a8173d471..32810c6e9 100644
--- a/host/include/uhd/types/time_spec.hpp
+++ b/host/include/uhd/types/time_spec.hpp
@@ -98,8 +98,8 @@ namespace uhd{
//! Implement addable interface
time_spec_t &operator+=(const time_spec_t &);
time_spec_t &operator+=(double &);
- time_spec_t &operator+(double &);
- time_spec_t &operator+(const time_spec_t &);
+ time_spec_t operator+(double &);
+ time_spec_t operator+(const time_spec_t &);
//! Implement subtractable interface
time_spec_t &operator-=(const time_spec_t &);