9#ifndef AVARA3D_PROFILE_PROFILE_H
10#define AVARA3D_PROFILE_PROFILE_H
16#include "a3d/profile/Profile.h"
17#include "a3d/profile/ScopeTimer.h"
24 decltype(
auto) profile(Profiler& profiler, Profiler::Tag tag, F&& f) {
25 ScopeTimer t {profiler, tag};
26 return std::invoke(std::forward<F>(f));