Skip to content

Commit

Permalink
@2066498 sdk::get_name -> sdk::name
Browse files Browse the repository at this point in the history
  • Loading branch information
apech authored and tsuna committed Sep 17, 2014
1 parent f8de24d commit 5c73608
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions eos/inline/sdk.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@

namespace eos {

inline std::string sdk::name() {
return name_;
}

inline acl_mgr * sdk::get_acl_mgr() {
if (!acl_mgr_) {
init_acl_mgr();
Expand Down Expand Up @@ -163,10 +167,6 @@ inline policy_map_mgr * sdk::get_policy_map_mgr() {
return policy_map_mgr_;
}

inline std::string sdk::get_name() {
return name_;
}

inline system_mgr * sdk::get_system_mgr() {
if (!system_mgr_) {
init_system_mgr();
Expand Down
2 changes: 1 addition & 1 deletion eos/sdk.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class EOS_SDK_PUBLIC sdk {
* log file, as well as the namespace for custom agent
* configuration and status.
*/
std::string get_name();
std::string name();

/**
* Begin the agent's event loop.
Expand Down

0 comments on commit 5c73608

Please sign in to comment.