mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-04-19 21:02:17 +03:00
17 lines
291 B
C++
17 lines
291 B
C++
//
|
|
// Copyright (C) 2018 Codership Oy <info@codership.com>
|
|
//
|
|
|
|
|
|
/** @file compiler.hpp
|
|
*
|
|
* Compiler specific options.
|
|
*/
|
|
|
|
#define WSREP_UNUSED __attribute__((unused))
|
|
#if __cplusplus >= 201103L
|
|
#define WSREP_OVERRIDE override
|
|
#else
|
|
#define WSREP_OVERRIDE
|
|
#endif // __cplusplus >= 201103L
|