mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
c0791b46d9
* check if default constructor is deleted #1094 * unit test icg deleted default constructor #1094 * Update centos 7 swig version to 3.0 to support deleted function in SIM_deleted_default_constructor test Co-authored-by: Fennell, Scott P 263712616 <scott.p.fennell@nasa.gov> closes #1094
13 lines
270 B
C++
13 lines
270 B
C++
/*************************************************************************
|
|
PURPOSE: (Empty class)
|
|
LIBRARY DEPENDENCY:
|
|
(
|
|
(empty.cpp)
|
|
)
|
|
**************************************************************************/
|
|
|
|
class Empty {
|
|
public:
|
|
Empty() = delete;
|
|
};
|