chromium/base/types/is_complete.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 BASE_TYPES_IS_COMPLETE_H_
#define BASE_TYPES_IS_COMPLETE_H_

#include <type_traits>

namespace base {

// True if `T` is completely defined.
IsComplete;

}  // namespace base

#endif  // BASE_TYPES_IS_COMPLETE_H_