Sort out some exception and member initialisation rules.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2018-08-11 21:19:19 +01:00
parent b640da1910
commit 70c70af969
30 changed files with 157 additions and 123 deletions

View File

@ -8,7 +8,7 @@
#include <iomanip>
#include <bitset>
EightBit::Disassembler::Disassembler() {
EightBit::Disassembler::Disassembler() noexcept {
// Disable exceptions where too many format arguments are available
m_formatter.exceptions(boost::io::all_error_bits ^ boost::io::too_many_args_bit);
}