From eb25bf44a8b965b75a8116dcd5630c51660dc035 Mon Sep 17 00:00:00 2001 From: Davis King Date: Fri, 8 Apr 2016 17:31:49 -0400 Subject: [PATCH] fixed spelling error --HG-- rename : dlib/test/corellation_tracker.cpp => dlib/test/correlation_tracker.cpp --- dlib/test/CMakeLists.txt | 2 +- ...rellation_tracker.cpp => correlation_tracker.cpp} | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) rename dlib/test/{corellation_tracker.cpp => correlation_tracker.cpp} (99%) diff --git a/dlib/test/CMakeLists.txt b/dlib/test/CMakeLists.txt index 2aeaa1007..1e7b21872 100644 --- a/dlib/test/CMakeLists.txt +++ b/dlib/test/CMakeLists.txt @@ -39,7 +39,7 @@ set (tests conditioning_class_c.cpp conditioning_class.cpp config_reader.cpp - corellation_tracker.cpp + correlation_tracker.cpp crc32.cpp create_iris_datafile.cpp data_io.cpp diff --git a/dlib/test/corellation_tracker.cpp b/dlib/test/correlation_tracker.cpp similarity index 99% rename from dlib/test/corellation_tracker.cpp rename to dlib/test/correlation_tracker.cpp index a6bc0c45d..2cb6ba376 100644 --- a/dlib/test/corellation_tracker.cpp +++ b/dlib/test/correlation_tracker.cpp @@ -14,17 +14,17 @@ namespace using namespace test; using namespace dlib; using namespace std; - dlib::logger dlog("test.corellation_tracker"); + dlib::logger dlog("test.correlation_tracker"); - class corellation_tracker_tester : public tester + class correlation_tracker_tester : public tester { public: - corellation_tracker_tester( + correlation_tracker_tester( ) : tester ( - "test_corellation_tracker", // the command line argument name for this test - "Run tests on the corellation_tracker functions.", // the command line argument description + "test_correlation_tracker", // the command line argument name for this test + "Run tests on the correlation_tracker functions.", // the command line argument description 0 // the number of command line arguments for this test ) { @@ -946,7 +946,7 @@ namespace }; - corellation_tracker_tester a; + correlation_tracker_tester a; // ----------------------------------------------------------------------------------------