to get rid of debugging helper functions

This commit is contained in:
Cameron T. Druyor 2016-04-29 16:49:04 -04:00
parent e2163c36b5
commit 3beff40c37
2 changed files with 0 additions and 16 deletions

View File

@ -1,15 +0,0 @@
#pragma once
template<typename MType,typename MValue>
bool isIssue230(MType& m_type, MValue& m_value){
if(m_value.number_float != 23.42)
return false;
if(m_type.bits.exp_cap == 0 and
m_type.bits.exp_plus == 0 and
m_type.bits.has_exp == 1 and
m_type.bits.parsed == 1 and
m_type.bits.precision == 0 and
m_type.bits.type == 7)
return true;
return false;
}

View File

@ -52,7 +52,6 @@ SOFTWARE.
#include <type_traits>
#include <utility>
#include <vector>
#include "Issue230Helpers.h"
// disable float-equal warnings on GCC/clang
#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__)