Couple more slight indent fixes

pull/36/head
Dylan Wulf 2015-10-12 16:55:22 -04:00
parent db9d11cc1c
commit 0f4b1d5f57
3 changed files with 3 additions and 3 deletions

View File

@ -205,7 +205,7 @@ int Main( int argc, char **argv )
else if ( vm.count( "move" ) > 0 )
{
bool success = drive.Move( vm["move"].as<std::vector<std::string> >()[0],
vm["move"].as<std::vector<std::string> >()[1] );
vm["move"].as<std::vector<std::string> >()[1] );
if (success)
Log( "Move successful!", log::info );
else

View File

@ -159,7 +159,7 @@ void Drive::Update()
{
Log( "Synchronizing files", log::info ) ;
m_state.Sync( m_syncer, m_options ) ;
UpdateChangeStamp( ) ;
}

View File

@ -48,7 +48,7 @@ Val::Val( TypeEnum type )
case string_type: m_base.reset( new Impl<std::string> ) ; break ;
case array_type: m_base.reset( new Impl<Array> ) ; break ;
case object_type: m_base.reset( new Impl<Object> ) ; break ;
case null_type:
case null_type:
default: m_base.reset( new Impl<void> ) ; break ;
}
}