aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2018-03-27 08:55:13 -0600
committerTom Tromey <tom@tromey.com>2018-03-27 08:55:13 -0600
commit608219fb2917d407058952adf164eb616880662b (patch)
tree39a98fc54c13e10a57a1a89ff0019c80bf4db891 /gdb
parent3fcded8f30b6b0c1930d4f82914476315027aa2e (diff)
downloadgdb-608219fb2917d407058952adf164eb616880662b.zip
gdb-608219fb2917d407058952adf164eb616880662b.tar.gz
gdb-608219fb2917d407058952adf164eb616880662b.tar.bz2
Include <cmath> in dwarf-index-write.c
On x86-64 Fedora 26, when building with the system gcc, I get: ../../binutils-gdb/gdb/dwarf-index-write.c: In member function ‘void debug_names::build()’: ../../binutils-gdb/gdb/dwarf-index-write.c:705:13: error: ‘pow’ is not a member of ‘std’ There are actually more messages, but this is sufficient to show the problem. The fix is to include <cmath>. I'm checking this in as obvious. Tested by building. gdb/ChangeLog 2018-03-27 Tom Tromey <tom@tromey.com> * dwarf-index-write.c: Include <cmath>.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/dwarf-index-write.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 79c981d..8cbb725 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2018-03-27 Tom Tromey <tom@tromey.com>
+
+ * dwarf-index-write.c: Include <cmath>.
+
2018-03-27 Joel Brobecker <brobecker@adacore.com>
* NEWS: Add entry describing new "set|show varsize-limit" command.
diff --git a/gdb/dwarf-index-write.c b/gdb/dwarf-index-write.c
index 3059e0b..058712d 100644
--- a/gdb/dwarf-index-write.c
+++ b/gdb/dwarf-index-write.c
@@ -34,6 +34,7 @@
#include "psympriv.h"
#include <algorithm>
+#include <cmath>
#include <set>
#include <unordered_map>
#include <unordered_set>