forked from Chuyu-Team/VC-LTL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmehvccctr.cpp
More file actions
23 lines (20 loc) · 696 Bytes
/
Copy pathmehvccctr.cpp
File metadata and controls
23 lines (20 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/***
*mehvccctr.cpp - EH-aware version of copy constructor iterator helper function
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* These functions are called when constructing and destructing arrays of
* objects. Their purpose is to assure that constructed elements get
* destructed if the constructor for one of the elements throws.
*
* Must be compiled using "-d1Binl" to be able to specify __thiscall
* at the user level
*******************************************************************************/
#ifdef CRTDLL
#undef CRTDLL
#endif /* CRTDLL */
#ifdef MRTDLL
#undef MRTDLL
#endif /* MRTDLL */
#include "ehvccctr.cpp"