diff --git a/libs/audiographer/audiographer/type_utils.h b/libs/audiographer/audiographer/type_utils.h index 360168d55d..1d4754dee9 100644 --- a/libs/audiographer/audiographer/type_utils.h +++ b/libs/audiographer/audiographer/type_utils.h @@ -6,6 +6,7 @@ #include #include #include +#include namespace AudioGrapher { diff --git a/libs/evoral/test/SequenceTest.hpp b/libs/evoral/test/SequenceTest.hpp index 403ac0fd13..79af6779fb 100644 --- a/libs/evoral/test/SequenceTest.hpp +++ b/libs/evoral/test/SequenceTest.hpp @@ -99,7 +99,7 @@ public: virtual uint32_t write(Time time, EventType type, uint32_t size, const uint8_t* buf) { if (type == cc_type) { CPPUNIT_ASSERT(size == 3); - events.push_back(make_pair(time, buf[2])); + events.push_back(std::make_pair(time, buf[2])); } return size; }