mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-11 22:53:04 +00:00
9 lines
158 B
C++
9 lines
158 B
C++
#include "audit.h"
|
|
|
|
namespace app {
|
|
void runRvalueRef() {
|
|
audit::Event e;
|
|
audit::Event&& rr = static_cast<audit::Event&&>(e);
|
|
record(rr);
|
|
}
|
|
}
|