MeshLib C++ Docs
Loading...
Searching...
No Matches
MRNoDefInit.h
Go to the documentation of this file.
1#pragma once
2
3#include "MRMeshFwd.h"
4
5namespace MR
6{
9
10
12template <typename T>
13struct NoDefInit : T
14{
15 constexpr NoDefInit() noexcept : T( noInit ) {}
16 using T::operator=;
17};
18
19}
constexpr NoDefInit() noexcept
Definition MRNoDefInit.h:15
only for bindings generation
Definition MRCameraOrientationPlugin.h:8
this class is similar to T, but does not make default initialization of the fields for best performan...
Definition MRNoDefInit.h:14