mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-07-28 09:37:20 +02:00

* [vcpkg formatting] Turn off DeriveLineEnding * format * Add newlines to the end of files Since we're reformatting anyways
10 lines
118 B
C++
10 lines
118 B
C++
#pragma once
|
|
|
|
#include <vcpkg/base/span.h>
|
|
|
|
namespace vcpkg
|
|
{
|
|
template<class T>
|
|
using View = Span<const T>;
|
|
}
|