summaryrefslogtreecommitdiff
path: root/gnuradio-core/src
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-10-20 14:00:14 -0700
committerJosh Blum <josh@joshknows.com>2011-10-20 14:00:14 -0700
commitab6f8142da17ee70effd469f20a41821b4bc4513 (patch)
treec61f4c00a9d36075008cab80631ff2c9378f8925 /gnuradio-core/src
parent793e9070ce7d88b818b3f4d8809a07fdf50afda0 (diff)
removes gcc warning, dont need symbol export on plain c structs
Diffstat (limited to 'gnuradio-core/src')
-rw-r--r--gnuradio-core/src/lib/viterbi/viterbi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-core/src/lib/viterbi/viterbi.h b/gnuradio-core/src/lib/viterbi/viterbi.h
index 5bb8b357a6..3a3ea56154 100644
--- a/gnuradio-core/src/lib/viterbi/viterbi.h
+++ b/gnuradio-core/src/lib/viterbi/viterbi.h
@@ -26,7 +26,7 @@
#include <gr_core_api.h>
-struct GR_CORE_API viterbi_state {
+struct viterbi_state {
unsigned long path; /* Decoded path to this state */
long metric; /* Cumulative metric to this state */
};