Skip to content

Commit 065ecf5

Browse files
committed
Fix build.
1 parent a4697a6 commit 065ecf5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Common/Cpp/Options/SimpleIntegerOption.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ SimpleIntegerOption<Type>::SimpleIntegerOption(
200200

201201

202202

203-
204203
template class SimpleIntegerCell<uint8_t>;
205204
template class SimpleIntegerCell<uint16_t>;
206205
template class SimpleIntegerCell<uint32_t>;
@@ -220,5 +219,11 @@ template class SimpleIntegerOption<int32_t>;
220219
template class SimpleIntegerOption<int64_t>;
221220

222221

222+
// This is stupid.
223+
#ifdef __APPLE__
224+
template class SimpleIntegerCell<size_t>;
225+
template class SimpleIntegerOption<size_t>;
226+
#endif
227+
223228

224229
}

0 commit comments

Comments
 (0)