diff options
Diffstat (limited to 'src/driver.h')
-rw-r--r-- | src/driver.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/driver.h b/src/driver.h index a57e62459..fa16cd24c 100644 --- a/src/driver.h +++ b/src/driver.h @@ -79,7 +79,11 @@ protected: strecpy(buf, GetDriverTypeName(type), lastof(buf)); strecpy(buf + 5, name, lastof(buf)); - std::pair<Drivers::iterator, bool> P = GetDrivers().insert(Drivers::value_type(buf, this)); +#if !defined(NDEBUG) + /* NDEBUG disables asserts and gives a warning: unused variable 'P' */ + std::pair<Drivers::iterator, bool> P = +#endif /* !NDEBUG */ + GetDrivers().insert(Drivers::value_type(buf, this)); assert(P.second); } |