diff options
author | Nick Foster <nick@nerdnetworks.org> | 2011-02-15 22:28:38 -0800 |
---|---|---|
committer | Nick Foster <nick@nerdnetworks.org> | 2011-02-15 22:28:38 -0800 |
commit | 1bf5a3ea4bbb9fd6baf72eb876778d2652c97f2c (patch) | |
tree | 3c133a726756b6b615e7e5cc9dbc239dec0e712f /volk/lib | |
parent | 88c389e1166cf5427cfabc012502337999c2b68f (diff) |
reverted mktables deletion until i get my act together and make it go straight from python -> .h
Diffstat (limited to 'volk/lib')
-rw-r--r-- | volk/lib/qa_utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/volk/lib/qa_utils.cc b/volk/lib/qa_utils.cc index 150cef7295..f8fcc7b28d 100644 --- a/volk/lib/qa_utils.cc +++ b/volk/lib/qa_utils.cc @@ -83,10 +83,10 @@ static std::vector<std::string> get_arch_list(const char **indices, const int ar int num_archs = archs[0]; for(int i = 0; i < num_archs; i++) { - //std::cout << "the archs this fn is avail on is " << archs[0] << std::endl; if(!(archs[i+1] & volk_get_lvarch())) continue; //this arch isn't available on this pc archlist.push_back(std::string(indices[i])); } + return archlist; } |