-
Notifications
You must be signed in to change notification settings - Fork 149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating basic type command for VDB #89
base: vdb
Are you sure you want to change the base?
Changes from all commits
1718390
2cc02d9
2dbae76
84e1149
2a23f83
203d497
bbe83dc
5f6dd18
96cbd50
bb53683
08716b5
e270334
a3cf433
2d44086
e7c4455
3e4936e
278b1d6
cfdc624
7ec838d
1c2a949
c271e5d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
#include <set> | ||
#include <string> | ||
#include <vector> | ||
#include <iterator> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I did that because I was getting an error on line 261 and 262: error C2039: 'inserter': is not a member of 'std'. That was fixed by adding the include. |
||
|
||
#include "bu/app.h" | ||
#include "bu/cmd.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.
Since all the macro name corresponds to ASCII representation of the hex numbers which gives a hint of what they means. For e.g. below
706e7473
meanspnts
. So similarly you can changevdb
to76646220
.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.
Cool! I will do that.