1 /*
2  * synergy -- mouse and keyboard sharing utility
3  * Copyright (C) 2014-2016 Symless Ltd.
4  *
5  * This package is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * found in the file LICENSE that should have accompanied this file.
8  *
9  * This package is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #include <stdexcept>
19 
20 // apple declares _NOEXCEPT
21 #ifndef _NOEXCEPT
22 #    define _NOEXCEPT throw()
23 #endif
24