Skip to content
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

Forgot to include cstdlib in VIManager_Thread #13

Closed
iRi-E opened this issue May 16, 2011 · 1 comment
Closed

Forgot to include cstdlib in VIManager_Thread #13

iRi-E opened this issue May 16, 2011 · 1 comment

Comments

@iRi-E
Copy link

iRi-E commented May 16, 2011

In VIManager_Thread.cpp, calloc() and free() are used but cstdlib is not included, so the builds fail at least on my system (Ubuntu 11.04 amd64).

The following patch should fix this issue:

--- a/QMA/plugins/QMAVIManagerPlugin/VIManager_Thread.cpp
+++ b/QMA/plugins/QMAVIManagerPlugin/VIManager_Thread.cpp
@@ -38,6 +38,8 @@
 
 /* headers */
 
+#include <cstdlib>
+
 #include "QMAVIManagerPlugin.h"
 #include "VIManager.h"
 #include "VIManager_Thread.h"
@iRi-E
Copy link
Author

iRi-E commented Jun 5, 2011

This bug was fixed 852284e.

@iRi-E iRi-E closed this as completed Jun 5, 2011
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant