Skip to content

Commit e32b4ce

Browse files
committed
Macでのビルドエラー修正
1 parent c3f473c commit e32b4ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.idea/vcs.xml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

include/plateau/texture/atlas_container.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
#pragma once
22

3+
#include <cstddef>
4+
35
namespace plateau::texture {
46
class AtlasContainer {
57
public:
68

7-
explicit AtlasContainer(const size_t _gap, const size_t _horizontal_range, const size_t _vertical_range);
9+
explicit AtlasContainer(size_t _gap, size_t _horizontal_range, size_t _vertical_range);
810

911
size_t getGap() const {
1012
return gap;

0 commit comments

Comments
 (0)