1
0
Fork 0

Fix protection assertions.

This commit is contained in:
Max Neunhoeffer 2014-06-10 13:16:01 +02:00
parent d0ba832ffb
commit d4b5ee25ee
1 changed files with 4 additions and 4 deletions

View File

@ -156,7 +156,7 @@ struct TRI_doc_mptr_t {
}
#else
// The actual code has an assertion about transactions!
void const* getDataPtr () const;
virtual void const* getDataPtr () const;
#endif
////////////////////////////////////////////////////////////////////////////////
@ -169,7 +169,7 @@ struct TRI_doc_mptr_t {
}
#else
// The actual code has an assertion about transactions!
void setDataPtr (void const* d);
virtual void setDataPtr (void const* d);
#endif
////////////////////////////////////////////////////////////////////////////////
@ -237,7 +237,7 @@ struct TRI_doc_mptr_copy_t : public TRI_doc_mptr_t {
}
#else
// The actual code has an assertion about transactions!
void const* getDataPtr () const;
virtual void const* getDataPtr () const;
#endif
#ifndef TRI_ENABLE_MAINTAINER_MODE
@ -246,7 +246,7 @@ struct TRI_doc_mptr_copy_t : public TRI_doc_mptr_t {
}
#else
// The actual code has an assertion about transactions!
void setDataPtr (void const* d);
virtual void setDataPtr (void const* d);
#endif
};