diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-05-29 12:33:58 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-05-29 12:33:58 -0400 |
| commit | b00682429988f17152e7573ffeffa1cecfdd3d3a (patch) | |
| tree | b621adaa2bfe3a7a9846970f7426fd950e17aa99 /include/framework/RecordInterface.h | |
| parent | de5fa133758e2f0aad855ac58dff5cfa13d06f74 (diff) | |
| download | dynamic-extension-b00682429988f17152e7573ffeffa1cecfdd3d3a.tar.gz | |
Tests and bugfixes for framework
Diffstat (limited to 'include/framework/RecordInterface.h')
| -rw-r--r-- | include/framework/RecordInterface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/framework/RecordInterface.h b/include/framework/RecordInterface.h index 8afd90a..c8e622f 100644 --- a/include/framework/RecordInterface.h +++ b/include/framework/RecordInterface.h @@ -26,8 +26,8 @@ concept RecordInterface = requires(R r, R s) { }; template<RecordInterface R> -struct WrappedRecord { - R rec; +struct WrappedRecord : R { + //R rec; uint32_t header; inline void set_delete() { |