Minor indentation fix

This commit is contained in:
Mael Rouxel-Labbé 2023-12-07 20:56:30 +01:00
parent 024651390f
commit d715a658a0
1 changed files with 4 additions and 5 deletions

View File

@ -49,14 +49,14 @@ class Concurrent_mesher_config
{}
public:
static Concurrent_mesher_config &get()
static Concurrent_mesher_config& get()
{
static Concurrent_mesher_config singleton;
return singleton;
}
static bool load_config_file(const char *filename,
bool reload_if_already_loaded = false)
bool reload_if_already_loaded = false)
{
return get().load_file(filename, reload_if_already_loaded);
}
@ -83,9 +83,8 @@ public:
protected:
bool load_file(
const char *filename,
bool reload_if_already_loaded = false)
bool load_file(const char *filename,
bool reload_if_already_loaded = false)
{
CGAL_USE(reload_if_already_loaded);
#ifdef CGAL_USE_BOOST_PROGRAM_OPTIONS