Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 771 Bytes

is-standard-layout-class.md

File metadata and controls

37 lines (25 loc) · 771 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: is_standard_layout Class
is_standard_layout Class
11/04/2016
type_traits/std::is_standard_layout
is_standard_layout class
is_standard_layout
15ccf111-f537-45ef-b552-59152a7ba312

is_standard_layout Class

Tests if type is a standard layout.

Syntax

template <class Ty>
struct is_standard_layout;

Parameters

Ty
The type to query

Remarks

An instance of this type predicate holds true if the type Ty is a class that has a standard layout of member objects in memory, otherwise it holds false.

Requirements

Header: <type_traits>

Namespace: std

See also

<type_traits>