UdonLibrary 1.0.0
機械システム研究部 C++ ライブラリ
読み取り中…
検索中…
一致する文字列を見つけられません
AlwaysFalse.hpp
[詳解]
1//
2// 実体化されたときに static_assert が失敗する型
3//
4// Copyright (c) 2022-2024 udonrobo
5//
6
7#pragma once
8
10#include <type_traits>
11
12namespace Udon
13{
14 namespace Traits
15 {
16
37 template <typename T>
38 struct AlwaysFalse : std::false_type
39 {
40 };
41
42 } // namespace Traits
43} // namespace Udon
Definition Bit.hpp:12
static_assert 失敗遅延用の型
Definition AlwaysFalse.hpp:39