Add deterministic C++ reference adapter
This commit is contained in:
parent
f00aa65a73
commit
7bee0220c2
7 changed files with 1915 additions and 0 deletions
12
tests/fixtures/reference-cpp/include/detail.hpp
vendored
Normal file
12
tests/fixtures/reference-cpp/include/detail.hpp
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
namespace demo {
|
||||
|
||||
inline int normalize(int value) {
|
||||
if (value < 0) {
|
||||
return 0;
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
} // namespace demo
|
||||
Loading…
Add table
Add a link
Reference in a new issue