Форматирование кода
This commit is contained in:
parent
671f0f3ec4
commit
18ecd62eb7
@ -234,16 +234,16 @@ whereami_path_t::operator const whereami_string_t&() const
|
||||
#endif // if defined( WHEREAMI_CXX11 )
|
||||
|
||||
#if defined( WHEREAMI_CXX11 )
|
||||
whereami_path_t::whereami_path_t( whereami_string_t&& path, int dirname_length ) noexcept
|
||||
: m_path( std::move( path ) ),
|
||||
whereami_path_t::whereami_path_t( whereami_string_t&& path, int dirname_length ) noexcept :
|
||||
m_path ( std::move( path ) ),
|
||||
m_dirnameLength( dirname_length )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
#else
|
||||
whereami_path_t::whereami_path_t( whereami_string_t& path, int dirname_length )
|
||||
: m_path( path ),
|
||||
whereami_path_t::whereami_path_t( whereami_string_t& path, int dirname_length ) :
|
||||
m_path ( path ),
|
||||
m_dirnameLength( dirname_length )
|
||||
{
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user