src/BlockAllocator.cpp in gosu-1.3.0 vs src/BlockAllocator.cpp in gosu-1.4.0

- old
+ new

@@ -1,10 +1,11 @@ +#include <Gosu/Utility.hpp> #include "BlockAllocator.hpp" #include <stdexcept> #include <vector> using namespace std; -struct Gosu::BlockAllocator::Impl +struct Gosu::BlockAllocator::Impl : Gosu::Noncopyable { unsigned width, height; vector<Block> blocks; unsigned first_x, first_y;