summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video_core/textures/astc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/textures/astc.cpp b/src/video_core/textures/astc.cpp
index 1f1c3bd3a..3625b666c 100644
--- a/src/video_core/textures/astc.cpp
+++ b/src/video_core/textures/astc.cpp
@@ -197,7 +197,7 @@ struct IntegerEncodedValue {
197 }; 197 };
198}; 198};
199using IntegerEncodedVector = boost::container::static_vector< 199using IntegerEncodedVector = boost::container::static_vector<
200 IntegerEncodedValue, 64, 200 IntegerEncodedValue, 256,
201 boost::container::static_vector_options< 201 boost::container::static_vector_options<
202 boost::container::inplace_alignment<alignof(IntegerEncodedValue)>, 202 boost::container::inplace_alignment<alignof(IntegerEncodedValue)>,
203 boost::container::throw_on_overflow<false>>::type>; 203 boost::container::throw_on_overflow<false>>::type>;