Include missing <algorithm> to abg-dwarf-reader.cc

Turns out without this include the file won't compile on el6/g++
4.4.7, because std::lower_bound won't be found.  Woops.

Fixed thus.

	* src/abg-dwarf-reader.cc: Add missing <algorithm> include file.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2016-01-08 23:54:46 +01:00
parent 5c8c049e70
commit 3422aaf1c6

View File

@ -37,6 +37,7 @@
#include <cmath>
#include <elfutils/libdwfl.h>
#include <dwarf.h>
#include <algorithm>
#include <iostream>
#include <tr1/unordered_map>
#include <stack>