diff --git a/ChangeLog b/ChangeLog index e0a067204..9d42bceef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2011-05-05 Alexandre Duret-Lutz + + Fix compilation error with g++ <= 4.3. + + * src/misc/intvcmp2.cc (int_array_array_compression): Specify full + type of stream_compression_base in + constructor to please g++ versions <= 4.3. + 2011-05-02 Alexandre Duret-Lutz DVE2: Minor memory compaction. diff --git a/src/misc/intvcmp2.cc b/src/misc/intvcmp2.cc index ddaeabf6e..ac481d09e 100644 --- a/src/misc/intvcmp2.cc +++ b/src/misc/intvcmp2.cc @@ -268,7 +268,7 @@ namespace spot public: int_array_array_compression(const int* array, size_t n, int* dest, size_t& dest_n) - : stream_compression_base(n), + : stream_compression_base(n), array_(array), result_size_(dest_n), result_(dest), result_end_(dest + dest_n) {