UdonLibrary 1.0.0
機械システム研究部 C++ ライブラリ
読み取り中…
検索中…
一致する文字列を見つけられません
EnableSTL.hpp
[詳解]
1//
2// STL を使用できない環境で STL を使用できるようにする
3//
4// Copyright (c) 2022-2024 udonrobo
5//
6
7#pragma once
8
9#undef abs
10
11#if !__has_include(<vector>)
12# include <UdonArduinoSTL.hpp>
13#endif