Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
[iOS] remove c++ global var
Browse files Browse the repository at this point in the history
  • Loading branch information
jianhan-he committed May 20, 2019
1 parent 02dfc8c commit 1bdb48c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class CoreSideInPlatform : public PlatformBridge::CoreSide {
int DestroyInstance(const char *instanceId) override;
int UpdateGlobalConfig(const char *config) override;

int UpdateInitFrameworkParams(const std::string& key, const std::string& value, const std::string& desc);
int UpdateInitFrameworkParams(const std::string& key, const std::string& value, const std::string& desc) override;


private:
Expand Down
2 changes: 1 addition & 1 deletion weex_core/Source/core/common/view_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace WeexCore {
constexpr char AUTO_UNIT[] = "auto";
constexpr char NONE[] = "none";

const std::string STATUS_BAR_HEIGHT("status_bar_height");
constexpr char STATUS_BAR_HEIGHT[] = "status_bar_height";

template<typename T>
inline std::string to_string(const T &n) {
Expand Down

0 comments on commit 1bdb48c

Please sign in to comment.