From 4600ea135c29fcb679835557ee2c7e417bf0f46b Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Fri, 2 Dec 2016 23:33:53 -0800 Subject: [PATCH] Frame: Make Data struct public. --- src/Frame.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Frame.h b/src/Frame.h index 9adf672ecb..1fb1c297a3 100644 --- a/src/Frame.h +++ b/src/Frame.h @@ -25,7 +25,6 @@ class Frame { public: typedef uint64_t Time; - private: struct Data { explicit Data(std::size_t capacity_) : data(new char[capacity_]), size(0), capacity(capacity_) {}