Blob Blame History Raw
diff --git a/GridContainer/GridContainer/_impl/GridContainer.icpp b/GridContainer/GridContainer/_impl/GridContainer.icpp
index 1216714..f01133a 100644
--- a/GridContainer/GridContainer/_impl/GridContainer.icpp
+++ b/GridContainer/GridContainer/_impl/GridContainer.icpp
@@ -47,7 +47,7 @@ template<typename GridCellManager, typename... AxesTypes>
 GridContainer<GridCellManager, AxesTypes...>::GridContainer(
                       const GridContainer<GridCellManager, AxesTypes...>& other,
                       size_t axis, size_t index)
-      : m_axes{other.m_axes}, m_axes_fixed{fixAxis(other.m_axes_fixed, axis, index)},
+      : m_axes{other.m_axes}, m_axes_fixed{fixAxis(other.m_axes, axis, index)},
         m_fixed_indices{other.m_fixed_indices}, m_cell_manager{other.m_cell_manager} {
   // Update the fixed indices
   if (m_fixed_indices.find(axis) != m_fixed_indices.end()) {
@@ -155,7 +155,7 @@ template<typename GridCellManager, typename... AxesTypes>
 template<int I>
 GridContainer<GridCellManager, AxesTypes...>  GridContainer<GridCellManager, AxesTypes...>::fixAxisByIndex(size_t index) {
   if (index >= getOriginalAxis<I>().size()) {
-    throw Elements::Exception() << "Index (" << index << ") out of axis " 
+    throw Elements::Exception() << "Index (" << index << ") out of axis "
                               << getOriginalAxis<I>().name() << " size ("
                               << getOriginalAxis<I>().size() << ")";
   }