libsigrok.hpp: Fix incorrect glibmm.h #include.

As per upstream docs "#include <glibmm.h>" is the correct usage,
the "glibmm-2.4" directory is handled correctly via pkg-config:

 $ pkg-config --cflags glibmm-2.4
 -I/usr/include/glibmm-2.4 [...]
This commit is contained in:
Uwe Hermann 2015-01-17 19:59:44 +01:00
parent afba88adb5
commit e0e6aecc20
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ raised, which provides access to the error code and description.
#define LIBSIGROK_HPP
#include "libsigrok/libsigrok.h"
#include <glibmm-2.4/glibmm.h>
#include <glibmm.h>
#include <stdexcept>
#include <memory>