10 lines
151 B
C++
10 lines
151 B
C++
#pragma once
|
|
|
|
#include "func.detail.hpp"
|
|
|
|
namespace iue::other {
|
|
|
|
inline int header_only(int a) { return detail::calc(a); }
|
|
|
|
} // namespace iue::other
|