Skip to content

Commit c1a125a

Browse files
committed
Refs #23504: Linter
1 parent 699810b commit c1a125a

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

include/fastcdr/Cdr.h

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ class Cdr
764764
*/
765765
template<class _T, size_t _Size,
766766
typename std::enable_if<
767-
!static_is_multi_array_primitive<std::array<_T, _Size> const*>::value &&
767+
!static_is_multi_array_primitive<std::array<_T, _Size> const*>::value&&
768768
is_complex_array_or_string<std::array<_T, _Size>>::value>::type* = nullptr>
769769
Cdr& serialize(
770770
const std::array<_T, _Size>& array_t)
@@ -786,7 +786,7 @@ class Cdr
786786
*/
787787
template<class _T, size_t _Size,
788788
typename std::enable_if<
789-
!static_is_multi_array_primitive<std::array<_T, _Size> const*>::value &&
789+
!static_is_multi_array_primitive<std::array<_T, _Size> const*>::value&&
790790
!is_complex_array_or_string<std::array<_T, _Size>>::value>::type* = nullptr>
791791
Cdr& serialize(
792792
const std::array<_T, _Size>& array_t)
@@ -807,9 +807,9 @@ class Cdr
807807
* @exception exception::NotEnoughMemoryException This exception is thrown when trying to serialize a position that exceeds the internal memory size.
808808
*/
809809
template<class _T, typename std::enable_if<
810-
!std::is_enum<_T>::value &&
811-
!std::is_arithmetic<_T>::value &&
812-
!is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
810+
!std::is_enum<_T>::value &&
811+
!std::is_arithmetic<_T>::value &&
812+
!is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
813813
Cdr& serialize(
814814
const std::vector<_T>& vector_t)
815815
{
@@ -839,9 +839,9 @@ class Cdr
839839
* @exception exception::NotEnoughMemoryException This exception is thrown when trying to serialize a position that exceeds the internal memory size.
840840
*/
841841
template<class _T, typename std::enable_if<
842-
!std::is_enum<_T>::value &&
843-
!std::is_arithmetic<_T>::value &&
844-
is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
842+
!std::is_enum<_T>::value &&
843+
!std::is_arithmetic<_T>::value &&
844+
is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
845845
Cdr& serialize(
846846
const std::vector<_T>& vector_t)
847847
{
@@ -871,9 +871,9 @@ class Cdr
871871
* @exception exception::NotEnoughMemoryException This exception is thrown when trying to serialize a position that exceeds the internal memory size.
872872
*/
873873
template<class _T, typename std::enable_if<
874-
(std::is_enum<_T>::value ||
875-
std::is_arithmetic<_T>::value) &&
876-
!is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
874+
(std::is_enum<_T>::value ||
875+
std::is_arithmetic<_T>::value) &&
876+
!is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
877877
Cdr& serialize(
878878
const std::vector<_T>& vector_t)
879879
{
@@ -1887,7 +1887,7 @@ class Cdr
18871887
* @exception exception::NotEnoughMemoryException This exception is thrown when trying to deserialize a position that exceeds the internal memory size.
18881888
*/
18891889
template<class _T, size_t _Size,
1890-
typename std::enable_if<
1890+
typename std::enable_if<
18911891
static_is_multi_array_primitive<std::array<_T, _Size> const*>::value>::type* = nullptr>
18921892
Cdr& deserialize(
18931893
std::array<_T, _Size>& array_t)
@@ -1902,8 +1902,8 @@ class Cdr
19021902
* @exception exception::NotEnoughMemoryException This exception is thrown when trying to deserialize a position that exceeds the internal memory size.
19031903
*/
19041904
template<class _T, size_t _Size,
1905-
typename std::enable_if<
1906-
!static_is_multi_array_primitive<std::array<_T, _Size> const*>::value &&
1905+
typename std::enable_if<
1906+
!static_is_multi_array_primitive<std::array<_T, _Size> const*>::value&&
19071907
is_complex_array_or_string<std::array<_T, _Size>>::value>::type* = nullptr>
19081908
Cdr& deserialize(
19091909
std::array<_T, _Size>& array_t)
@@ -1941,8 +1941,8 @@ class Cdr
19411941
* @exception exception::NotEnoughMemoryException This exception is thrown when trying to deserialize a position that exceeds the internal memory size.
19421942
*/
19431943
template<class _T, size_t _Size,
1944-
typename std::enable_if<
1945-
!static_is_multi_array_primitive<std::array<_T, _Size> const*>::value &&
1944+
typename std::enable_if<
1945+
!static_is_multi_array_primitive<std::array<_T, _Size> const*>::value&&
19461946
!is_complex_array_or_string<std::array<_T, _Size>>::value>::type* = nullptr>
19471947
Cdr& deserialize(
19481948
std::array<_T, _Size>& array_t)
@@ -1976,9 +1976,9 @@ class Cdr
19761976
* @exception exception::NotEnoughMemoryException This exception is thrown when trying to deserialize a position that exceeds the internal memory size.
19771977
*/
19781978
template<class _T, typename std::enable_if<
1979-
!std::is_enum<_T>::value &&
1980-
!std::is_arithmetic<_T>::value &&
1981-
!is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
1979+
!std::is_enum<_T>::value &&
1980+
!std::is_arithmetic<_T>::value &&
1981+
!is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
19821982
Cdr& deserialize(
19831983
std::vector<_T>& vector_t)
19841984
{
@@ -2051,9 +2051,9 @@ class Cdr
20512051
* @exception exception::NotEnoughMemoryException This exception is thrown when trying to deserialize a position that exceeds the internal memory size.
20522052
*/
20532053
template<class _T, typename std::enable_if<
2054-
!std::is_enum<_T>::value &&
2055-
!std::is_arithmetic<_T>::value &&
2056-
is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
2054+
!std::is_enum<_T>::value &&
2055+
!std::is_arithmetic<_T>::value &&
2056+
is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
20572057
Cdr& deserialize(
20582058
std::vector<_T>& vector_t)
20592059
{
@@ -2131,9 +2131,9 @@ class Cdr
21312131
* @exception exception::NotEnoughMemoryException This exception is thrown when trying to deserialize a position that exceeds the internal memory size.
21322132
*/
21332133
template<class _T, typename std::enable_if<
2134-
(std::is_enum<_T>::value ||
2135-
std::is_arithmetic<_T>::value) &&
2136-
!is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
2134+
(std::is_enum<_T>::value ||
2135+
std::is_arithmetic<_T>::value) &&
2136+
!is_complex_array_or_string<std::vector<_T>>::value>::type* = nullptr>
21372137
Cdr& deserialize(
21382138
std::vector<_T>& vector_t)
21392139
{

0 commit comments

Comments
 (0)