-
Notifications
You must be signed in to change notification settings - Fork 88
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
Continuous integration on Travis #27
Conversation
variable length array of non-POD element type for std::vector<cctag::ImageCut> vSelectedCuts[ numTags ]
@@ -876,7 +876,7 @@ void cctagDetection(CCTag::List& markers, | |||
} | |||
#endif // WITH_CUDA | |||
|
|||
std::vector<cctag::ImageCut> vSelectedCuts[ numTags ]; | |||
std::vector<std::vector<cctag::ImageCut> > vSelectedCuts( numTags ); |
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.
@griwodz pls check if it is a safe change, clang was somehow complaining about making a c-array of vectors. It compiles after this but I hope there are not hidden side effects..
Conflicts: src/cctag/Detection.cpp
@lcalvet @griwodz @zvrba can someone check this (#27 (comment)) and merge? |
I've looked at the context (code around it in the file) and the change in the context looks fine. I'll merge it. |
thx! |
connected to #24