Skip to content

Commit

Permalink
fix filesyste file_stats error (#556)
Browse files Browse the repository at this point in the history
* fix

* fix

* fix
  • Loading branch information
srz-zumix committed Jan 6, 2021
1 parent aef98bf commit 6eefab9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ci/drone/Makefile
Expand Up @@ -36,7 +36,7 @@ setup: ${SOURCE_DOCKERCONFIG} ## setup drone.io configuration
--name dockerconfig \
--data @./${SOURCE_DOCKERCONFIG}

empty:
empty: ## setup drone.io empty dockerconfig
drone secret update --repository srz-zumix/iutest \
--allow-pull-request \
--name dockerconfig \
Expand Down
6 changes: 3 additions & 3 deletions include/internal/iutest_genparams.hpp
Expand Up @@ -762,7 +762,7 @@ class iuCartesianProductHolder2
IUTEST_PP_ENUM_BINARY(n, IIUT_DECL_CARTESIAN_PRODUCT_HOLDER_STATICCAST_, T, m_g) ); \
} \
IIUT_DECL_CARTESIAN_PRODUCT_HOLDER_CONCAT_() \
private: _Myt& operator = (const _Myt&); \
private: _Myt& operator = (const _Myt&) IUTEST_CXX_DELETED_FUNCTION; \
IUTEST_PP_REPEAT_BINARY(n, IIUT_DECL_CARTESIAN_PRODUCT_HOLDER_VARIABLE_, const Generator, m_g) \
}

Expand Down Expand Up @@ -1304,7 +1304,7 @@ class iuPairwiseHolder2
}
private:
_Myt& operator = (const _Myt&);
_Myt& operator = (const _Myt&) IUTEST_CXX_DELETED_FUNCTION;
private:
const Generator1 m_g1;
const Generator2 m_g2;
Expand Down Expand Up @@ -1336,7 +1336,7 @@ class iuPairwiseHolder2
IUTEST_PP_ENUM_BINARY(n, IIUT_DECL_PAIRWISE_HOLDER_STATICCAST_, T, m_g) ); \
} \
IIUT_DECL_PAIRWISE_HOLDER_CONCAT_() \
private: _Myt& operator = (const _Myt&); \
private: _Myt& operator = (const _Myt&) IUTEST_CXX_DELETED_FUNCTION; \
IUTEST_PP_REPEAT_BINARY(n, IIUT_DECL_PAIRWISE_HOLDER_VARIABLE_, const Generator, m_g) \
}

Expand Down
4 changes: 4 additions & 0 deletions test/cxx_feature_tests.cpp
Expand Up @@ -272,6 +272,8 @@ IUTEST(FileSystem, PathPrintTo)
}
}

#if IUTEST_HAS_CXX2A

IUTEST(FileSystem, StatusCompare)
{
{
Expand All @@ -281,6 +283,8 @@ IUTEST(FileSystem, StatusCompare)
}
}

#endif

IUTEST(FileSystem, StatusPrintTo)
{
{
Expand Down

0 comments on commit 6eefab9

Please sign in to comment.