Skip to content

Commit

Permalink
Merge pull request #87 from Xottab-DUTY/small_fixes
Browse files Browse the repository at this point in the history
Small fixes
  • Loading branch information
Kaffeine committed Nov 21, 2015
2 parents dc6def9 + e65e27b commit 7048f0a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/xrCore/Crypto/xr_dsa_signer.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "stdafx.h"
#include "xr_dsa_signer.h"
#include <ctime>

xr_dsa_signer::xr_dsa_signer(u8 const p_number[crypto::xr_dsa::public_key_length],
u8 const q_number[crypto::xr_dsa::private_key_length],
Expand Down
4 changes: 2 additions & 2 deletions src/xrGame/alife_monster_detail_path_manager_script.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ SCRIPT_EXPORT(CALifeMonsterDetailPathManager, (),
.def("target", (void (CALifeMonsterDetailPathManager::*)(const GameGraph::_GRAPH_ID &, const u32 &, const Fvector &))(&CALifeMonsterDetailPathManager::target))
.def("target", (void (CALifeMonsterDetailPathManager::*)(const GameGraph::_GRAPH_ID &))(&CALifeMonsterDetailPathManager::target))
.def("target", (void (CALifeMonsterDetailPathManager::*)(const CALifeSmartTerrainTask *))(&CALifeMonsterDetailPathManager::target))
.def("speed ", (void (CALifeMonsterDetailPathManager::*)(const float &))(&CALifeMonsterDetailPathManager::speed))
.def("speed ", (const float &(CALifeMonsterDetailPathManager::*)() const)(&CALifeMonsterDetailPathManager::speed))
.def("speed", (void (CALifeMonsterDetailPathManager::*)(const float &))(&CALifeMonsterDetailPathManager::speed))
.def("speed", (const float &(CALifeMonsterDetailPathManager::*)() const)(&CALifeMonsterDetailPathManager::speed))
.def("completed", &CALifeMonsterDetailPathManager::completed)
.def("actual", &CALifeMonsterDetailPathManager::actual)
.def("failed", &CALifeMonsterDetailPathManager::failed)
Expand Down
2 changes: 1 addition & 1 deletion src/xrServerEntities/smart_cast_impl0.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#pragma once

#include "object_type_traits.h"
#include "Common/object_type_traits.h"

namespace SmartDynamicCast {
template <typename T1, typename T2>
Expand Down

0 comments on commit 7048f0a

Please sign in to comment.