diff options
author | Josh Blum <josh@joshknows.com> | 2010-03-27 01:02:58 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-03-27 01:02:58 -0700 |
commit | 52df9afd679fd0f42edeef29f0bbc0d7bd76559e (patch) | |
tree | bcb28585a0195560e0551012ec2cfb33833ef917 /host/test | |
parent | dd41206f2a5127871fc4c9911a748f7f4e3b6c51 (diff) | |
download | uhd-52df9afd679fd0f42edeef29f0bbc0d7bd76559e.tar.gz uhd-52df9afd679fd0f42edeef29f0bbc0d7bd76559e.tar.bz2 uhd-52df9afd679fd0f42edeef29f0bbc0d7bd76559e.zip |
Split utils.hpp into subdir with multiple files.
static for static block and static instance (singleton)
assert for assertion and throwing related stuff
algorithm for my addons to std::algorithm (has)
and a new one, safe main, for having a main catch-all
Diffstat (limited to 'host/test')
-rw-r--r-- | host/test/module_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/test/module_test.cpp b/host/test/module_test.cpp index 71721ef90..47a0e1af9 100644 --- a/host/test/module_test.cpp +++ b/host/test/module_test.cpp @@ -15,10 +15,10 @@ // along with this program. If not, see <http://www.gnu.org/licenses/>. // -#include <uhd/utils.hpp> +#include <uhd/utils/static.hpp> #include <iostream> -STATIC_BLOCK(module_test){ +UHD_STATIC_BLOCK(module_test){ std::cout << "---------------------------------------" << std::endl; std::cout << "-- Good news, everyone!" << std::endl; std::cout << "-- The test module has been loaded." << std::endl; |