mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-29 11:53:23 +08:00
[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:
parent
3436fb3338
commit
5b245b9b97
@ -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& )
|
||||
|
Loading…
Reference in New Issue
Block a user