]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/findcmd.c
gdb: Use std::min and std::max throughout
[thirdparty/binutils-gdb.git] / gdb / findcmd.c
index f5202e8199628e183fe78c037531d1d30ea769af..adc0813bef56ecc22cc3f13ab7a8fd67e4c2f1cd 100644 (file)
@@ -24,6 +24,7 @@
 #include "value.h"
 #include "target.h"
 #include "cli/cli-utils.h"
+#include <algorithm>
 
 /* Copied from bfd_put_bits.  */
 
@@ -178,7 +179,8 @@ parse_find_args (char *args, ULONGEST *max_countp,
       /* Keep it simple and assume size == 'g' when watching for when we
         need to grow the pattern buf.  */
       pattern_buf_size_need = (pattern_buf_end - pattern_buf
-                              + max (TYPE_LENGTH (t), sizeof (int64_t)));
+                              + std::max (TYPE_LENGTH (t),
+                                          (unsigned) sizeof (int64_t)));
       if (pattern_buf_size_need > pattern_buf_size)
        {
          size_t current_offset = pattern_buf_end - pattern_buf;