Skip to content

Commit

Permalink
compiles on Xcode 7
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoquesada committed Aug 7, 2015
1 parent ec0d663 commit b65c4da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions cocos/editor-support/spine/SkeletonRenderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ class SkeletonRenderer: public cocos2d::Node, public cocos2d::BlendProtocol {
bool setAttachment (const std::string& slotName, const char* attachmentName);

// --- BlendProtocol
virtual void setBlendFunc (const cocos2d::BlendFunc& blendFunc);
virtual const cocos2d::BlendFunc& getBlendFunc () const;
virtual void setOpacityModifyRGB (bool value);
virtual bool isOpacityModifyRGB () const;
virtual void setBlendFunc (const cocos2d::BlendFunc& blendFunc) override;
virtual const cocos2d::BlendFunc& getBlendFunc () const override;
virtual void setOpacityModifyRGB (bool value) override;
virtual bool isOpacityModifyRGB () const override;

CC_CONSTRUCTOR_ACCESS:
SkeletonRenderer ();
Expand Down
2 changes: 1 addition & 1 deletion cocos/network/CCDownloaderImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace network
DownloaderImpl();
virtual ~DownloaderImpl();

bool init(const std::string& url);
bool init(const std::string& url) override;

// Overrides
int performDownload(DownloadUnit* unit,
Expand Down

0 comments on commit b65c4da

Please sign in to comment.