diff options
author | Josh Blum <josh@joshknows.com> | 2010-05-17 23:23:58 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-05-17 23:23:58 -0700 |
commit | 527630cc9d51b17c7cf5ab6ca257a78a28284f6d (patch) | |
tree | 04f94c45a0f396baaaf4caad36134661d7bdc0ca /host/include | |
parent | 18f3f257145c4dcd981182221779550a7474488a (diff) | |
download | uhd-527630cc9d51b17c7cf5ab6ca257a78a28284f6d.tar.gz uhd-527630cc9d51b17c7cf5ab6ca257a78a28284f6d.tar.bz2 uhd-527630cc9d51b17c7cf5ab6ca257a78a28284f6d.zip |
use static init lists for the types, some speedup for the fast path related ones, other changes are pointless
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/mac_addr.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/types/mac_addr.hpp b/host/include/uhd/types/mac_addr.hpp index 034b6a348..0ced2e734 100644 --- a/host/include/uhd/types/mac_addr.hpp +++ b/host/include/uhd/types/mac_addr.hpp @@ -58,7 +58,7 @@ namespace uhd{ private: mac_addr_t(const byte_vector_t &bytes); //private constructor - byte_vector_t _bytes; //internal representation + const byte_vector_t _bytes; //internal representation }; } //namespace uhd |