]> sigrok.org Git - pulseview.git/commitdiff
Add missing include.
authorUwe Hermann <redacted>
Thu, 11 Oct 2012 21:03:04 +0000 (23:03 +0200)
committerUwe Hermann <redacted>
Thu, 11 Oct 2012 21:04:51 +0000 (23:04 +0200)
This breaks the build on Windows/MinGW otherwise, since stdlib.h is
needed for free().

logicdatasnapshot.cpp

index 10744cf7d6eb40dcd148f79d348d0fde43214d08..5d6505535fe35f81274ece384ad9557b3687c75f 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <assert.h>
 #include <string.h>
+#include <stdlib.h>
 #include <math.h>
 
 #include <boost/foreach.hpp>