axmol/cocos/editor-support/cocostudio/ActionTimeline
Ce Zheng 4b3525f7a8 use STL emplace when possible (#16815)
* replaced some unordered_map::insert(std::make_pair(foo, bar)) with unordered_map::emplace(foo, bar)
* replaced some vector::push_back(std::make_pair(foo, bar)) with vector::emplace_back(foo, bar)

The old way will construct a std::pair first then call move constructor
when putting it into the container, while using emplace will construct
the pair in-place in the container. Also, the emplace way is shorter &
more concise.
2016-11-08 11:50:00 +08:00
..
CCActionTimeline.cpp Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCActionTimeline.h Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCActionTimelineCache.cpp use STL emplace when possible (#16815) 2016-11-08 11:50:00 +08:00
CCActionTimelineCache.h Remove include of cocos2d.h (#15435) 2016-04-18 15:09:21 +08:00
CCActionTimelineNode.cpp Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCActionTimelineNode.h Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCBoneNode.cpp Remove redundant semicolons (#16558) 2016-09-12 09:45:34 +08:00
CCBoneNode.h misspelling check on cocos directory (#16522) 2016-09-06 10:14:14 +08:00
CCFrame.cpp Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCFrame.h Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCSkeletonNode.cpp use STL emplace when possible (#16815) 2016-11-08 11:50:00 +08:00
CCSkeletonNode.h Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCSkinNode.cpp Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCSkinNode.h Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCTimeLine.cpp Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCTimeLine.h Fixes 1605 include path in 541 files 2016-03-20 21:53:44 +08:00
CCTimelineMacro.h GBKToUTF8 2015-06-17 13:16:06 +08:00
CSLoader.cpp Move StringUtils functions from deprecated header file to ccUTF8.h (#15835) 2016-06-15 15:01:26 +08:00
CSLoader.h Remove include of cocos2d.h (#15435) 2016-04-18 15:09:21 +08:00