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:
Andreas Lauser
2013-10-29 12:20:35 +01:00
parent 851063c659
commit 9b5e1f27e6

View File

@@ -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()