diff options
author | Vidush <vidush.vishwanath@ettus.com> | 2018-06-26 12:06:42 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-06-26 13:51:34 -0700 |
commit | 523994c793c8e63f7b30657e06ce3588de0855c1 (patch) | |
tree | 934d1876e37bb4bcdc6433e6d71b7f7220661722 /host/include | |
parent | f2896713d48f6c0bc19a859f5ad506e0ddd7ae61 (diff) | |
download | uhd-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.hpp | 4 |
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 &); |