summaryrefslogtreecommitdiff
path: root/libs/algorithm/test/search_fail2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/algorithm/test/search_fail2.cpp')
-rw-r--r--libs/algorithm/test/search_fail2.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/libs/algorithm/test/search_fail2.cpp b/libs/algorithm/test/search_fail2.cpp
index 7b90f1bf08..463d242415 100644
--- a/libs/algorithm/test/search_fail2.cpp
+++ b/libs/algorithm/test/search_fail2.cpp
@@ -11,7 +11,7 @@
#include <boost/cstdint.hpp>
#include <boost/algorithm/searching/boyer_moore.hpp>
-int main( int argc, char *argv [] )
+int main( int , char* [] )
{
std::vector<boost::uint8_t> cv;
std::vector<boost:: int8_t> iv;
@@ -21,7 +21,5 @@ int main( int argc, char *argv [] )
(void) boost::algorithm::boyer_moore_search (
cv.begin (), cv.end (), iv.begin (), iv.end ());
-
- (void) argv; (void) argc;
return 0;
}