Valgrind: fix a small issue that only appears with multiple compile units
this were forgotten 'inline' statements for some client request functions.
This commit is contained in:
@@ -28,8 +28,8 @@
|
||||
#if ! HAVE_VALGRIND && ! defined(DOXYGEN)
|
||||
namespace Valgrind
|
||||
{
|
||||
bool boolBlubb(bool value) { return value; }
|
||||
void voidBlubb() { }
|
||||
inline bool boolBlubb(bool value) { return value; }
|
||||
inline void voidBlubb() { }
|
||||
|
||||
#define SetUndefined(t) voidBlubb()
|
||||
#define SetDefined(t) voidBlubb()
|
||||
|
||||
Reference in New Issue
Block a user