-
Notifications
You must be signed in to change notification settings - Fork 21
Initial support for analyzing categories. #45
base: dev
Are you sure you want to change the base?
Conversation
|
@dlevi309 good catch! I even forgot to add another file, fixed that! |
No prob 👍 happens all the time lol |
Aaaand rebased onto v2.2.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good barring a few minor issues mentioned in the comments. There is also some inconsistent whitespace which can be resolved by running the format
task provided by CMakeLists.txt
.
@@ -0,0 +1,81 @@ | |||
#include <ObjectiveNinjaCore/Analyzers/ClassAnalyzer.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is also missing a copyright header
@@ -0,0 +1,81 @@ | |||
#include <ObjectiveNinjaCore/Analyzers/ClassAnalyzer.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unnecessary #include
here
#include <ObjectiveNinjaCore/Analyzers/ClassAnalyzer.h> | ||
#include <ObjectiveNinjaCore/Analyzers/CategoryAnalyzer.h> | ||
|
||
#include <ObjectiveNinjaCore/TypeParser.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also unnecessary to #include <ObjectiveNinjaCore/TypeParser.h>
(although ClassAnalyzer.cpp
makes this mistake too, not your fault)
No description provided.