remove debug prints

This commit is contained in:
The Coriolis Project 2008-06-17 16:49:24 +00:00
parent a8b40f3b5c
commit 98ece39fab
1 changed files with 0 additions and 2 deletions

View File

@ -163,7 +163,6 @@ template<>
inline std::string getString<Hurricane::Transformation::Orientation::Code*>
( Hurricane::Transformation::Orientation::Code* object )
{
std::cerr << "Orientation::_getString(): " << std::hex << (void*)&object << " " << (unsigned int)object << std::endl;
switch ( *object ) {
case Hurricane::Transformation::Orientation::ID: return "ID";
case Hurricane::Transformation::Orientation::R1: return "R1";
@ -181,7 +180,6 @@ template<>
inline Hurricane::Record* getRecord<Hurricane::Transformation::Orientation::Code*>
( 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));
record->add(getSlot("Code", (unsigned int*)object));
return record;