mirror of
https://github.com/GothenburgBitFactory/taskshell.git
synced 2025-06-26 10:54:29 +02:00
Missing header include breaks compilation
``` ~/taskshell $ make Scanning dependencies of target tasksh [ 5%] Building CXX object src/CMakeFiles/tasksh.dir/review.cpp.o /home/litwol/Sites/taskshell/src/review.cpp: In function ‘int cmdReview(const std::vector<std::__cxx11::basic_string<char> >&, bool)’: /home/litwol/Sites/taskshell/src/review.cpp:344:29: error: ‘numeric_limits’ is not a member of ‘std’ 344 | unsigned int limit = std::numeric_limits<unsigned int>::max (); ```
This commit is contained in:
parent
7fdea221b3
commit
f17ae0f4e4
1 changed files with 1 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
|||
#include <string>
|
||||
#include <algorithm>
|
||||
#include <stdlib.h>
|
||||
#include <limits>
|
||||
|
||||
#ifdef HAVE_READLINE
|
||||
#include <readline/readline.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue