summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Krennmair <ak@synflood.at>2010-03-14 12:58:26 +0100
committerAndreas Krennmair <ak@synflood.at>2010-03-14 12:58:26 +0100
commit99ee8f03c64b26b1deafaa10345982d917c8bdd1 (patch)
treed9a08d47ad542c47e00c7967ed01dac97309b755
parentd884ac99b4bddda0e7dc33fb550bace53ff2ac40 (diff)
fixed build problems with -O2.r2.2
-rw-r--r--src/controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controller.cpp b/src/controller.cpp
index 78998ed8..47abab76 100644
--- a/src/controller.cpp
+++ b/src/controller.cpp
@@ -1426,7 +1426,7 @@ void controller::update_flags(std::tr1::shared_ptr<rss_item> item) {
item->update_flags();
}
-inline std::vector<std::tr1::shared_ptr<rss_feed> > controller::get_all_feeds() {
+std::vector<std::tr1::shared_ptr<rss_feed> > controller::get_all_feeds() {
std::vector<std::tr1::shared_ptr<rss_feed> > tmpfeeds;
{
scope_mutex feedslock(&feeds_mutex);