[0.2.x] fixed : build fix

git-svn-id: https://pykd.svn.codeplex.com/svn@81746 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\kernelnet_cp 2012-12-10 10:50:05 +00:00 committed by Mikhail I. Izmestev
parent 3436fb3338
commit 5b245b9b97

View File

@ -170,7 +170,7 @@ std::string BasicTypedVar::printValue()
try {
sstr << "0x" << boost::apply_visitor( VariantToHex(), getValue() );
sstr << boost::apply_visitor( VariantToHex(), getValue() );
sstr << " (" << boost::apply_visitor( VariantToStr(), getValue() ) << ")";
}
@ -217,7 +217,7 @@ std::string PtrTypedVar::printValue()
try {
sstr << "0x" << boost::apply_visitor( VariantToHex(), getValue() );
sstr << boost::apply_visitor( VariantToHex(), getValue() );
}
catch( MemoryException& )
@ -425,7 +425,7 @@ std::string BitFieldVar::printValue()
try
{
sstr << "0x" << boost::apply_visitor( VariantToHex(), getValue() );
sstr << boost::apply_visitor( VariantToHex(), getValue() );
sstr << " (" << boost::apply_visitor( VariantToStr(), getValue() ) << ")";
}
catch( MemoryException& )