Fix compilation with GCC 4.7
authorRafal Krypa <r.krypa@samsung.com>
Wed, 13 Jul 2016 14:19:00 +0000 (16:19 +0200)
committerKrzysztof Jackiewicz <k.jackiewicz@samsung.com>
Fri, 29 Jul 2016 08:45:24 +0000 (10:45 +0200)
commit0d29334a8d62e63df19745d346fdebd989e52ceb
tree3e00da21c9186eae44bfd0ee669a2b494374da2b
parent8e603c415cadcae9804b4461b914eb5ef4d7ec58
Fix compilation with GCC 4.7

GCC 4.7 has some weird behaviour expecting some destructors to be declared
explicitly with "noexcept(true)":

  In file included from /data/src/security/nether/src/nether_Manager.cpp:25:0:
  /data/src/security/nether/src/../include/nether_Manager.h:37:3: error: looser throw specifier for ‘virtual NetherManager::~NetherManager()’
  In file included from /data/src/security/nether/src/../include/nether_Manager.h:28:0,
                   from /data/src/security/nether/src/nether_Manager.cpp:25:
  /data/src/security/nether/src/../include/nether_Types.h:200:11: error:   overriding ‘virtual NetherVerdictListener::~NetherVerdictListener() noexcept (true)’

Change-Id: I2b12d7b6255d4057a3b9f198c1ca2c5c9d477ea1
include/nether_Manager.h
src/nether_Manager.cpp