Skip to content

Commit

Permalink
[git] change git ignore file info
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunelFeng committed Jun 2, 2024
1 parent 7d5b5a9 commit 7e802bf
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 113 deletions.
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
/.scannerwork/
.vscode/
/.cache/
/bazel-bin
/bazel-CGraph
/bazel-out
/bazel-testlogs
/bazel-*
/MODULE.bazel
/MODULE.bazel.lock

1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ Contributors:
- [SGSSGene](https://github.com/SGSSGene)
- [Lowpower](https://github.com/Lowpower)
- [PaPaPig-Melody](https://github.com/PaPaPig-Melody)
- [jiangliu123456](https://github.com/jiangliu123456)

感谢以上朋友,为CGraph项目做出的贡献,排名以贡献时间前后为顺序。
1 change: 0 additions & 1 deletion example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ set(CGRAPH_EXAMPLE_LIST
E02-MockGUI
E03-ThirdFlow
E04-MapReduce
E05-per_test
)

foreach(example ${CGRAPH_EXAMPLE_LIST})
Expand Down
105 changes: 0 additions & 105 deletions example/E05-per_test.cpp

This file was deleted.

2 changes: 1 addition & 1 deletion tutorial/MyGNode/MyNode1.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

class MyNode1 : public CGraph::GNode {
public:
CStatus run () override {
CStatus run() override {
CStatus status;
CGraph::CGRAPH_ECHO("[%s], enter MyNode1 run function. Sleep for 1 second ... ", this->getName().c_str());
CGRAPH_SLEEP_SECOND(1)
Expand Down
2 changes: 1 addition & 1 deletion tutorial/MyGNode/MyNode2.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class MyNode2 : public CGraph::GNode {
return status;
}

CStatus run () override {
CStatus run() override {
CStatus status;
CGraph::CGRAPH_ECHO("[%s], enter MyNode2 run function. Sleep for 2 second ... ", this->getName().c_str());
CGRAPH_SLEEP_SECOND(2)
Expand Down

0 comments on commit 7e802bf

Please sign in to comment.