chromium/third_party/openscreen/src/platform/base/type_util.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef PLATFORM_BASE_TYPE_UTIL_H_
#define PLATFORM_BASE_TYPE_UTIL_H_

#include <type_traits>

// File for defining generally useful type predicates for templatized classes
// and functions.
namespace openscreen::internal {

EnableIfArithmetic;  // NOLINT

EnableIfConvertible;  // NOLINT

}  // namespace openscreen::internal

#endif  // PLATFORM_BASE_TYPE_UTIL_H_