mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 19:43:33 +01:00
10 lines
127 B
C++
10 lines
127 B
C++
#pragma once
|
|
|
|
#include <vcpkg/base/span.h>
|
|
|
|
namespace vcpkg
|
|
{
|
|
template<class T>
|
|
using View = Span<const T>;
|
|
}
|