Skip to content

Commit

Permalink
[doc] add one article, add committers file.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunelFeng committed Oct 4, 2023
1 parent 1b819c8 commit 19891b4
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 5 deletions.
23 changes: 23 additions & 0 deletions COMMITTERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
committers:
- [@Chunel](https://github.com/ChunelFeng)
- [@yangyuxiang77](https://github.com/yangyuxiang77)
- [@logerrors](https://github.com/logerrors)
- [@whenever5225](https://github.com/whenever5225)
- [@May-Yaha](https://github.com/May-Yaha)
- [@Codesire-Deng](https://github.com/Codesire-Deng)
- [@yeshenyong](https://github.com/yeshenyong)
- [@MirrorYuChen](https://github.com/MirrorYuChen)
- [@HanYa](https://github.com/CodingHanYa)
- [@Ryan](https://github.com/ryanhuang)
- [@ATX735](https://github.com/ATX735)
- [@woodx](https://github.com/woodx9)
- [@jianengxi](https://github.com/greent2008)
- [@Hanano-Yuuki](https://github.com/Hanano-Yuuki)
- [@zpye](https://github.com/zpye)
- [@BoysFight](https://github.com/BoysFight)
- [@shiyiyuedeyu](https://github.com/shiyiyuedeyu)
- [@zmoth](https://github.com/zmoth)
- [@baoguo-ma1](https://github.com/baoguo-ma1)
- [@naonao](https://github.com/naonao-cola)

感谢以上朋友,为CGraph项目做出的贡献(排名以贡献时间前后为顺序)。
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ int main() {
* [纯序员给你介绍图化框架的简单实现——函数注入](http://www.chunel.cn/archives/cgraph-function-introduce)
* [纯序员给你介绍图化框架的简单实现——消息机制](http://www.chunel.cn/archives/cgraph-message-introduce)
* [纯序员给你介绍图化框架的简单实现——事件触发](http://www.chunel.cn/archives/cgraph-event-introduce)
* [纯序员给你介绍图化框架的简单实现——超时机制](http://www.chunel.cn/archives/cgraph-timeout-introduce)
* [纯序员给你介绍图化框架的简单实现——线程池优化(一)](http://www.chunel.cn/archives/cgraph-threadpool-1-introduce)
* [纯序员给你介绍图化框架的简单实现——线程池优化(二)](http://www.chunel.cn/archives/cgraph-threadpool-2-introduce)
* [纯序员给你介绍图化框架的简单实现——线程池优化(三)](http://www.chunel.cn/archives/cgraph-threadpool-3-introduce)
Expand Down Expand Up @@ -348,7 +349,7 @@ int main() {
* Thanks to the recommendation from [awesome-cpp](https://github.com/fffaraz/awesome-cpp), we all know, it is the most authoritative recommendation list for cpp project in the world
* Thanks to the recommendation from `Taskflow Group`: [awesome-parallel-computing](https://github.com/taskflow/awesome-parallel-computing), and we always treat [taskflow](https://github.com/taskflow/taskflow) as a role model
* Thanks to the recommendation from [awesome-workflow-engines](https://github.com/meirwah/awesome-workflow-engines)
* 感谢 [@yangyuxiang77](https://github.com/yangyuxiang77) [@logerrors](https://github.com/logerrors) [@whenever5225](https://github.com/whenever5225) [@May-Yaha](https://github.com/May-Yaha) [@Codesire-Deng](https://github.com/Codesire-Deng) [@yeshenyong](https://github.com/yeshenyong) [@MirrorYuChen](https://github.com/MirrorYuChen) [@HanYa](https://github.com/CodingHanYa) [@Ryan](https://github.com/ryanhuang) [@ATX735](https://github.com/ATX735) [@woodx](https://github.com/woodx9) [@jianengxi](https://github.com/greent2008) [@Hanano-Yuuki](https://github.com/Hanano-Yuuki) [@zpye](https://github.com/zpye) [@BoysFight](https://github.com/BoysFight) [@shiyiyuedeyu](https://github.com/shiyiyuedeyu) [@zmoth](https://github.com/zmoth) [@baoguo-ma1](https://github.com/baoguo-ma1) 等朋友(以贡献时间先后为序)为项目做出的贡献
* 感谢 [COMMITTERS](https://github.com/ChunelFeng/CGraph/blob/main/COMMITTERS) 为项目做出的贡献
* 感谢所有为`CGraph`项目提出的意见和建议的朋友,在此不一一提及。随时欢迎大家加入,一起共建

</details>
Expand Down
1 change: 0 additions & 1 deletion src/GraphCtrl/GraphElement/GElementManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

#include "GElement.h"
#include "GElementSorter.h"
#include "GGroup/GCluster/GCluster.h"
#include "_GEngine/GEngineInclude.h"

CGRAPH_NAMESPACE_BEGIN
Expand Down
2 changes: 0 additions & 2 deletions src/GraphCtrl/GraphMessage/GMessageDefine.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
#ifndef CGRAPH_GMESSAGEDEFINE_H
#define CGRAPH_GMESSAGEDEFINE_H

#include <string>

#include "GMessageObject.h"

CGRAPH_NAMESPACE_BEGIN
Expand Down
2 changes: 1 addition & 1 deletion src/UtilsCtrl/ThreadPool/Queue/UWorkStealingQueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ class UWorkStealingQueue : public UQueueObject {
CBool result = false;
if (lock_.try_lock()) {
deque_.emplace_back(std::move(task));
result = true;
lock_.unlock();
result = true;
}
return result;
}
Expand Down

0 comments on commit 19891b4

Please sign in to comment.