Форматирование кода
This commit is contained in:
parent
1abebc0be6
commit
ac6ae7b24d
@ -1 +1 @@
|
|||||||
Subproject commit 0e9651441369ae6984f728b9df14dbc2fa41aa58
|
Subproject commit f5151f5a2b102b75486c72df8d0dddd842ed0bbc
|
@ -1 +1 @@
|
|||||||
Subproject commit b05da4d52a0379c9ca9c06fd7898641268624238
|
Subproject commit 69fc1a43dfa7336d5878b0b28a0b9c0e07bf740e
|
@ -105,7 +105,6 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/** Constructor
|
/** Constructor
|
||||||
* @param container The container to construct from
|
* @param container The container to construct from
|
||||||
*/
|
*/
|
||||||
@ -121,7 +120,6 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
template< class CharT, class Traits, class Allocator >
|
template< class CharT, class Traits, class Allocator >
|
||||||
explicit
|
explicit
|
||||||
span( std::basic_string< CharT, Traits, Allocator >& s ) :
|
span( std::basic_string< CharT, Traits, Allocator >& s ) :
|
||||||
@ -130,7 +128,6 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
template< class CharT, class Traits, class Allocator >
|
template< class CharT, class Traits, class Allocator >
|
||||||
explicit
|
explicit
|
||||||
span( std::basic_string< CharT, Traits, Allocator > const& s ) :
|
span( std::basic_string< CharT, Traits, Allocator > const& s ) :
|
||||||
@ -139,7 +136,6 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/** Assignment
|
/** Assignment
|
||||||
* @param container The container to assign from
|
* @param container The container to assign from
|
||||||
*/
|
*/
|
||||||
@ -154,7 +150,6 @@ public:
|
|||||||
return( *this );
|
return( *this );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
template< class CharT, class Traits, class Allocator >
|
template< class CharT, class Traits, class Allocator >
|
||||||
span&
|
span&
|
||||||
operator=( std::basic_string<
|
operator=( std::basic_string<
|
||||||
@ -165,7 +160,6 @@ public:
|
|||||||
return( *this );
|
return( *this );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
template< class CharT, class Traits, class Allocator >
|
template< class CharT, class Traits, class Allocator >
|
||||||
span&
|
span&
|
||||||
operator=( std::basic_string<
|
operator=( std::basic_string<
|
||||||
@ -176,7 +170,6 @@ public:
|
|||||||
return( *this );
|
return( *this );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Returns `true` if the span is empty
|
/// Returns `true` if the span is empty
|
||||||
bool
|
bool
|
||||||
empty() const
|
empty() const
|
||||||
@ -184,7 +177,6 @@ public:
|
|||||||
return( m_size == 0 );
|
return( m_size == 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Returns a pointer to the beginning of the span
|
/// Returns a pointer to the beginning of the span
|
||||||
T*
|
T*
|
||||||
data() const
|
data() const
|
||||||
@ -192,7 +184,6 @@ public:
|
|||||||
return( m_data );
|
return( m_data );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Returns the number of elements in the span
|
/// Returns the number of elements in the span
|
||||||
std::size_t
|
std::size_t
|
||||||
size() const
|
size() const
|
||||||
@ -200,7 +191,6 @@ public:
|
|||||||
return( m_size );
|
return( m_size );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Returns an iterator to the beginning of the span
|
/// Returns an iterator to the beginning of the span
|
||||||
Iterator
|
Iterator
|
||||||
begin() const
|
begin() const
|
||||||
@ -208,7 +198,6 @@ public:
|
|||||||
return( m_data );
|
return( m_data );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Returns an iterator to the beginning of the span
|
/// Returns an iterator to the beginning of the span
|
||||||
ConstIterator
|
ConstIterator
|
||||||
cbegin() const
|
cbegin() const
|
||||||
@ -216,7 +205,6 @@ public:
|
|||||||
return( m_data );
|
return( m_data );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Returns an iterator to one past the end of the span
|
/// Returns an iterator to one past the end of the span
|
||||||
Iterator
|
Iterator
|
||||||
end() const
|
end() const
|
||||||
@ -224,7 +212,6 @@ public:
|
|||||||
return( m_data + m_size );
|
return( m_data + m_size );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Returns an iterator to one past the end of the span
|
/// Returns an iterator to one past the end of the span
|
||||||
ConstIterator
|
ConstIterator
|
||||||
cend() const
|
cend() const
|
||||||
|
@ -35,7 +35,6 @@ protected:
|
|||||||
return( n );
|
return( n );
|
||||||
} // swapBytes
|
} // swapBytes
|
||||||
|
|
||||||
|
|
||||||
#if defined( _MSC_VER )
|
#if defined( _MSC_VER )
|
||||||
#pragma warning ( pop )
|
#pragma warning ( pop )
|
||||||
#endif
|
#endif
|
||||||
@ -53,7 +52,6 @@ protected:
|
|||||||
return( ( reinterpret_cast< const char& >( k_i ) == 1 ) ? b : EndianTypesBase< T >::swapBytes( b ) ); //NOLINT
|
return( ( reinterpret_cast< const char& >( k_i ) == 1 ) ? b : EndianTypesBase< T >::swapBytes( b ) ); //NOLINT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// Constructors
|
// Constructors
|
||||||
LittleEndianType() = default;
|
LittleEndianType() = default;
|
||||||
@ -114,7 +112,6 @@ protected:
|
|||||||
return( ( reinterpret_cast< const char& >( k_i ) == 1 ) ? EndianTypesBase< T >::swapBytes( b ) : b ); //NOLINT
|
return( ( reinterpret_cast< const char& >( k_i ) == 1 ) ? EndianTypesBase< T >::swapBytes( b ) : b ); //NOLINT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// Constructors
|
// Constructors
|
||||||
BigEndianType() = default;
|
BigEndianType() = default;
|
||||||
|
@ -60,7 +60,6 @@ public:
|
|||||||
return( sPaths );
|
return( sPaths );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Обновление путей с учётом расположения исполняемого файла
|
* @brief Обновление путей с учётом расположения исполняемого файла
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user