Skip to content

Commit 0fb7c42

Browse files
committed
minor fix: move limits include in the correct file
Test: build Signed-off-by: Gluttton <gluttton@ukr.net>
1 parent 5065a62 commit 0fb7c42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/munkres-cpp/matrix_base.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#if !defined(__MUNKRES_CPP_MATRIX_BASE_H__)
2020
#define __MUNKRES_CPP_MATRIX_BASE_H__
2121

22-
#include <limits>
2322
#include <cmath>
2423
#include <iterator>
2524

src/munkres-cpp/munkres.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
#if !defined(_MUNKRES_H_)
2121
#define _MUNKRES_H_
2222

23-
#include <forward_list>
2423
#include <algorithm>
24+
#include <forward_list>
25+
#include <limits>
2526

2627

2728

0 commit comments

Comments
 (0)