Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // util.hpp file:
- template <char N>
- void func()
- {
- // definition
- }
- void func_spec();
- // util.cpp file
- #include "util.hpp"
- void func_spec()
- {
- return func<'N'>();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement