[libcalamares] Reduce warnings about trailing ;
This commit is contained in:
parent
7ed74cefa1
commit
0f80a6295b
@ -51,7 +51,7 @@ struct NamedEnumTable
|
|||||||
*
|
*
|
||||||
* static const NamedEnumTable<Colors> c{ {"red", Colors::Red } };
|
* static const NamedEnumTable<Colors> c{ {"red", Colors::Red } };
|
||||||
*/
|
*/
|
||||||
NamedEnumTable( const std::initializer_list< pair_t >& v ) : table( v ) { /* static_assert( v.size() > 0 ); */ };
|
NamedEnumTable( const std::initializer_list< pair_t >& v ) : table( v ) { /* static_assert( v.size() > 0 ); */ }
|
||||||
|
|
||||||
/** @brief Find a name @p s in the table.
|
/** @brief Find a name @p s in the table.
|
||||||
*
|
*
|
||||||
|
@ -31,7 +31,7 @@ public:
|
|||||||
explicit LocaleConfiguration();
|
explicit LocaleConfiguration();
|
||||||
/// @brief Create a locale with everything set to the given @p localeName
|
/// @brief Create a locale with everything set to the given @p localeName
|
||||||
explicit LocaleConfiguration( const QString& localeName /* "en_US.UTF-8" */ )
|
explicit LocaleConfiguration( const QString& localeName /* "en_US.UTF-8" */ )
|
||||||
: LocaleConfiguration( localeName, localeName ) { };
|
: LocaleConfiguration( localeName, localeName ) { }
|
||||||
/// @brief Create a locale with language and formats separate
|
/// @brief Create a locale with language and formats separate
|
||||||
explicit LocaleConfiguration( const QString& localeName, const QString& formatsName );
|
explicit LocaleConfiguration( const QString& localeName, const QString& formatsName );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user