diff options
author | Josh Blum <josh@joshknows.com> | 2010-11-02 09:05:20 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-11-02 09:05:20 -0700 |
commit | 082f619de40a00880b3b25f29c96d572de131662 (patch) | |
tree | e5f3bc5caa0cf2a2f35fbfc58ba696a2afa18046 | |
parent | cb4e30ec501aa201c0ca5d2676f2d568ae24356b (diff) | |
download | uhd-082f619de40a00880b3b25f29c96d572de131662.tar.gz uhd-082f619de40a00880b3b25f29c96d572de131662.tar.bz2 uhd-082f619de40a00880b3b25f29c96d572de131662.zip |
uhd: fixed typo - removed export for templated class
-rw-r--r-- | host/include/uhd/types/dict.ipp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/types/dict.ipp b/host/include/uhd/types/dict.ipp index 4aab5de45..ba05d5272 100644 --- a/host/include/uhd/types/dict.ipp +++ b/host/include/uhd/types/dict.ipp @@ -28,7 +28,7 @@ namespace uhd{ namespace /*anon*/{ template<typename Key, typename Val> - struct UHD_API key_not_found: std::out_of_range{ + struct key_not_found: std::out_of_range{ key_not_found(const Key &key): std::out_of_range( str(boost::format( "key \"%s\" not found in dict(%s, %s)" |