List of commits:
Subject Hash Author Date (UTC)
emit with arg 2cfab1f1668896ac6d58e868b8ee6d41a79dc447 mucbuc 2019-11-11 02:45:45
check dispatch logic 5b40033514e610292c25336b821829675c8f7edd mucbuc 2019-11-11 02:35:18
another test 718946ff7621bab0d8242e19ab423626c41a0b97 mucbuc 2019-11-11 02:20:42
emit once d3d244834caec7f581b254957c22b8f1c2af5321 mucbuc 2019-11-11 00:31:05
brreaking apart tests 0fa426d441993960bb8752d646744c748f2767f4 mucbuc 2019-11-11 00:13:05
trimmed 765e78aeba5eab8cd4ab933792327b393322c56a mucbuc 2019-11-10 22:39:52
fix convcurent test 11773096bd273e10835aa534f8f45ed2f25b2af6 mucbuc 2019-11-09 20:10:17
break appat e70933ddd90fcc006e0456cb60b096144e17b8bf mucbuc 2019-11-09 19:52:07
use paramete pack 04b380271051ac0f8a18135fde01a80b8e6b67ef mucbuc 2019-11-05 04:48:58
cleanup 69d0ce30002b97c5a2da1309677e0078b24f5615 mucbuc 2019-11-03 00:31:22
fix compile time error fbc1c35e2389d9fffebe94808385ded809b4061a mucbuc 2019-11-03 00:30:41
rm dynamo 10a004cc3ffda178fe3c592d1e32e5a39078adff mucbuc 2019-11-03 00:07:17
point to aws code commit fdfa4593d13b1fadcbed55b91b37239dfabc0941 mucbuc 2019-11-02 23:57:24
cleanup template stuff 4ebc0945d2e8cf2c7a1f75d3dab125b83f76078d mucbuc 2019-11-02 21:09:51
more cleanup bfbe00170ae67ea7e8e1cb23e4e352b18188b5a9 mucbuc 2019-11-02 21:01:10
delete explicit template stuff 1a43665b79bb3df8e28cb7be2d460cbec6cd6a0f mucbuc 2019-11-02 20:55:26
use parameter pack aaff690514d7543a66c285cf9214ebad55c6876e mucbuc 2019-11-02 20:49:43
builds d8412e21c450b8da35dc1f248cb713859bb40c26 mucbuc 2019-11-02 20:26:54
ignore test tmp 0c68fe48a97a80098e224875f1f7aa948a7c6a59 Ubuntu 2018-10-07 09:50:49
format code a919ca42b5f904d30d0791709d804f2e3cc1cc3a Ubuntu 2018-10-07 09:33:51
Commit 2cfab1f1668896ac6d58e868b8ee6d41a79dc447 - emit with arg
Author: mucbuc
Author date (UTC): 2019-11-11 02:45
Committer name: mucbuc
Committer date (UTC): 2019-11-11 02:45
Parent(s): 5b40033514e610292c25336b821829675c8f7edd
Signer:
Signing key:
Signing status: N
Tree: f608520e681ccfc478c9d57ec741fd1d9251f3d0
File Lines added Lines deleted
test/emit_with_arg.json 1 1
test/src/emit_with_arg.cpp 4 6
test/tests.json 2 1
File test/emit_with_arg.json copied from file test/emit_once.json (similarity 75%) (mode: 100644) (index e7915a7..daabd94)
3 3 "lib/ohm/ohm.json" "lib/ohm/ohm.json"
4 4 ], ],
5 5 "sources": [ "sources": [
6 "src/emit_once.cpp",
6 "src/emit_with_arg.cpp",
7 7 "src/emitter_fwd.h" "src/emitter_fwd.h"
8 8 ] ]
9 9 } }
File test/src/emit_with_arg.cpp renamed from test/src/emit_with_arg.h (similarity 85%) (mode: 100644) (index 6495c89..00c3ed0)
1 #include <tmp/src/test.h>
2 1
3 2 #include <iostream> #include <iostream>
4 3 #include <vector> #include <vector>
4 #include <tmp/src/test.h>
5 #include <lib/ohm/src/quemitter.h>
5 6
6 7 using namespace std; using namespace std;
7 8 using namespace om636; using namespace om636;
 
... ... void check_emit_with_arg()
33 34 FOOTER; FOOTER;
34 35 } }
35 36
36 #include <tmp/src/test.h>
37 #include <lib/ohm/src/emitter.h>
38
39 37 template <class T, class U> template <class T, class U>
40 38 using QueuedEmitter = om636::control::Quemitter<T, U>; using QueuedEmitter = om636::control::Quemitter<T, U>;
41 39
 
... ... int main()
43 41 { {
44 42 using namespace std; using namespace std;
45 43
46 test_emitter<om636::control::Emitter>();
47 test_emitter<QueuedEmitter>();
44 check_emit_with_arg<om636::control::Emitter>();
45 check_emit_with_arg<QueuedEmitter>();
48 46
49 47 return 0; return 0;
50 48 } }
File test/tests.json changed (mode: 100644) (index 3826007..ef93976)
4 4 "agent_life_time.json", "agent_life_time.json",
5 5 "emit_once.json", "emit_once.json",
6 6 "dispatch_logic.json", "dispatch_logic.json",
7 "emit_while_emit.json"
7 "emit_while_emit.json",
8 "emit_with_arg.json"
8 9 ] } ] }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mucbuc/ohm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mucbuc/ohm

Clone this repository using git:
git clone git://git.rocketgit.com/user/mucbuc/ohm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main