mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-21 17:34:47 -05:00
Some checks failed
C/C++ CI / ubuntu-latest (push) Has been cancelled
`find . -regex '.*\.\(cpp\|hpp\|cu\|cuh\|c\|h\)' -exec clang-format -style=file -i {} \;`
18 lines
368 B
C++
18 lines
368 B
C++
#include <nn/sl/TitleListCache.h>
|
|
|
|
namespace nn::sl
|
|
{
|
|
namespace
|
|
{
|
|
extern "C" details::ITitleListCacheInternal *
|
|
GetDefaultTitleListCache__Q2_2nn2slFv();
|
|
}
|
|
static TitleListCacheFromPtr sDefaultTitleListCache(GetDefaultTitleListCache__Q2_2nn2slFv());
|
|
|
|
details::ITitleListCacheBase &
|
|
GetDefaultTitleListCache()
|
|
{
|
|
return sDefaultTitleListCache;
|
|
}
|
|
|
|
} // namespace nn::sl
|