diff options
author | Josh Blum <josh@joshknows.com> | 2010-04-26 23:41:39 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-04-26 23:41:39 -0700 |
commit | 8bf1ad45de2c81e5bea9f2ba4330ee1f8ce18bc7 (patch) | |
tree | 9e316a2614643bbf14c323ca7b80606dce63481d /host/lib | |
parent | a62ff5290ab931a8c57f743e54e030c07964e568 (diff) | |
download | uhd-8bf1ad45de2c81e5bea9f2ba4330ee1f8ce18bc7.tar.gz uhd-8bf1ad45de2c81e5bea9f2ba4330ee1f8ce18bc7.tar.bz2 uhd-8bf1ad45de2c81e5bea9f2ba4330ee1f8ce18bc7.zip |
added to the time spec documentation
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/types.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/types.cpp b/host/lib/types.cpp index 08e41b62f..14f7651d4 100644 --- a/host/lib/types.cpp +++ b/host/lib/types.cpp @@ -105,9 +105,9 @@ tx_metadata_t::tx_metadata_t(void){ /*********************************************************************** * time spec **********************************************************************/ -time_spec_t::time_spec_t(boost::uint32_t new_secs, double new_nsecs){ - secs = new_secs; - nsecs = new_nsecs; +time_spec_t::time_spec_t(boost::uint32_t secs_, double nsecs_){ + secs = secs_; + nsecs = nsecs_; } boost::uint32_t time_spec_t::get_ticks(double tick_rate) const{ |