diff options
author | eb | 2007-01-30 03:59:34 +0000 |
---|---|---|
committer | eb | 2007-01-30 03:59:34 +0000 |
commit | 4d84dd43e1dd5056a49b6c8d4caa638ece7a6cff (patch) | |
tree | 76c1191a57a665e94696be2b7cb87e190eeb87fb /omnithread/omnithread.h | |
parent | 6ff1faed9d4c7095ab2d07b99478fe46e35f0e1e (diff) | |
download | gnuradio-4d84dd43e1dd5056a49b6c8d4caa638ece7a6cff.tar.gz gnuradio-4d84dd43e1dd5056a49b6c8d4caa638ece7a6cff.tar.bz2 gnuradio-4d84dd43e1dd5056a49b6c8d4caa638ece7a6cff.zip |
Fixes ticket:134. Unlikely offender was inclusion of
gr_udp_sink/source code io.i. omnithread.h was also including
<config.h> which is a no-no.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@4333 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'omnithread/omnithread.h')
-rw-r--r-- | omnithread/omnithread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omnithread/omnithread.h b/omnithread/omnithread.h index b6df34d72..bd916561e 100644 --- a/omnithread/omnithread.h +++ b/omnithread/omnithread.h @@ -73,7 +73,7 @@ class omni_thread; // #if !defined(OMNITHREAD_POSIX) && !defined(OMNITHREAD_NT) && defined HAVE_CONFIG_H -#include <config.h> +// #include <config.h> // No, No, No! Never include <config.h> from a header #endif #if defined(OMNITHREAD_POSIX) |