FEAT 3
Finite Element Analysis Toolbox
Loading...
Searching...
No Matches
empty_meshopt.cpp
1// FEAT3: Finite Element Analysis Toolbox, Version 3
2// Copyright (C) 2010 by Stefan Turek & the FEAT group
3// FEAT3 is released under the GNU General Public License version 3,
4// see the file 'copyright.txt' in the top level directory for details.
5
6#ifndef DOXYGEN
7
8// Dummy class instance to silence ipo linker optimization warnings about empty libmeshopt
9class ipo_foobar_meshopt
10{
11public:
12 int i;
13 ipo_foobar_meshopt() :
14 i(0)
15 {
16 (void)i;
17 }
18} ipo_barfoo_meshopt;
19
20#endif // DOXYGEN