Skip to content

Commit

Permalink
cmath include ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
ivikhrev committed Mar 31, 2022
1 parent 02bf0c8 commit 954c962
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 16 deletions.
3 changes: 1 addition & 2 deletions demos/common/cpp/models/src/detection_model_faceboxes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@

#include "models/detection_model_faceboxes.h"

#include <cmath>

#include <algorithm>
#include <cmath>
#include <map>
#include <stdexcept>

Expand Down
2 changes: 1 addition & 1 deletion demos/common/cpp/models/src/detection_model_retinaface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

#include "models/detection_model_retinaface.h"

#include <cmath>
#include <stddef.h>

#include <algorithm>
#include <cmath>
#include <stdexcept>

#include <opencv2/core.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

#include "models/detection_model_retinaface_pt.h"

#include <cmath>
#include <stdint.h>

#include <algorithm>
#include <cmath>
#include <map>
#include <stdexcept>
#include <string>
Expand Down
3 changes: 1 addition & 2 deletions demos/common/cpp/models/src/detection_model_yolo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@

#include "models/detection_model_yolo.h"

#include <cmath>

#include <algorithm>
#include <cmath>
#include <cstdint>
#include <stdexcept>
#include <string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

#include "models/hpe_model_associative_embedding.h"

#include <cmath>
#include <stddef.h>

#include <algorithm>
#include <cmath>
#include <map>
#include <stdexcept>
#include <string>
Expand Down
3 changes: 1 addition & 2 deletions demos/common/cpp/models/src/hpe_model_openpose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@

#include "models/hpe_model_openpose.h"

#include <cmath>

#include <algorithm>
#include <cmath>
#include <map>
#include <stdexcept>
#include <string>
Expand Down
3 changes: 1 addition & 2 deletions demos/common/cpp/models/src/openpose_decoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@

#include "models/openpose_decoder.h"

#include <cmath>

#include <algorithm>
#include <cmath>
#include <memory>
#include <utility>
#include <vector>
Expand Down
2 changes: 1 addition & 1 deletion demos/object_detection_demo/cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
// limitations under the License.
*/

#include <cmath>
#include <stddef.h>

#include <algorithm>
#include <chrono>
#include <cmath>
#include <cstdint>
#include <exception>
#include <iomanip>
Expand Down
2 changes: 1 addition & 1 deletion demos/pedestrian_tracker_demo/cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#include <stdint.h>

#include <algorithm>
#include <cmath>
#include <chrono>
#include <cmath>
#include <exception>
#include <map>
#include <memory>
Expand Down
4 changes: 2 additions & 2 deletions demos/pedestrian_tracker_demo/cpp/src/distance.cpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Copyright (C) 2018-2019 Intel Corporation
// Copyright (C) 2018-2022 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//

#include "distance.hpp"

#include <cmath>
#include <stddef.h>

#include <cmath>
#include <vector>

#include "logging.hpp"
Expand Down
2 changes: 1 addition & 1 deletion demos/pedestrian_tracker_demo/cpp/src/tracker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

#include "tracker.hpp"

#include <cmath>
#include <stdlib.h>

#include <algorithm>
#include <cmath>
#include <deque>
#include <limits>
#include <map>
Expand Down

0 comments on commit 954c962

Please sign in to comment.