6d4fe5cdd5
* Run clang-tidy on the full code base * Run clang-tidy on diffs * Enable ASAN in coverage build * Add UBSAN to code analysis
10 lines
311 B
C++
10 lines
311 B
C++
#include <memory>
|
|
|
|
#include "query/procedure/mg_procedure_impl.hpp"
|
|
|
|
namespace test_utils {
|
|
using MgpValueOwningPtr = std::unique_ptr<mgp_value, void (*)(mgp_value *)>;
|
|
|
|
MgpValueOwningPtr CreateValueOwningPtr(mgp_value *value) { return MgpValueOwningPtr(value, &mgp_value_destroy); }
|
|
} // namespace test_utils
|