remove debug prints
This commit is contained in:
parent
a8b40f3b5c
commit
98ece39fab
|
@ -163,7 +163,6 @@ template<>
|
||||||
inline std::string getString<Hurricane::Transformation::Orientation::Code*>
|
inline std::string getString<Hurricane::Transformation::Orientation::Code*>
|
||||||
( Hurricane::Transformation::Orientation::Code* object )
|
( Hurricane::Transformation::Orientation::Code* object )
|
||||||
{
|
{
|
||||||
std::cerr << "Orientation::_getString(): " << std::hex << (void*)&object << " " << (unsigned int)object << std::endl;
|
|
||||||
switch ( *object ) {
|
switch ( *object ) {
|
||||||
case Hurricane::Transformation::Orientation::ID: return "ID";
|
case Hurricane::Transformation::Orientation::ID: return "ID";
|
||||||
case Hurricane::Transformation::Orientation::R1: return "R1";
|
case Hurricane::Transformation::Orientation::R1: return "R1";
|
||||||
|
@ -181,7 +180,6 @@ template<>
|
||||||
inline Hurricane::Record* getRecord<Hurricane::Transformation::Orientation::Code*>
|
inline Hurricane::Record* getRecord<Hurricane::Transformation::Orientation::Code*>
|
||||||
( Hurricane::Transformation::Orientation::Code* object )
|
( Hurricane::Transformation::Orientation::Code* object )
|
||||||
{
|
{
|
||||||
std::cerr << "Orientation::_getRecord(): " << std::hex << (void*)&object << " " << (unsigned int)object << std::endl;
|
|
||||||
Hurricane::Record* record = new Hurricane::Record(getString(object));
|
Hurricane::Record* record = new Hurricane::Record(getString(object));
|
||||||
record->add(getSlot("Code", (unsigned int*)object));
|
record->add(getSlot("Code", (unsigned int*)object));
|
||||||
return record;
|
return record;
|
||||||
|
|
Loading…
Reference in New Issue