Make everything struct, never use class

This commit is contained in:
Alex Hultman
2019-06-09 08:07:51 +02:00
parent 762b18459e
commit 996703dde6
10 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ namespace uWS {
// publishing to a node, then another node, then another node should prioritize draining that way
// sending and publishing will interleave undefined, they are separate streams
class TopicTree {
struct TopicTree {
private:
struct Node : std::map<std::string, Node *> {
/* Add and/or lookup node from topic */