Skip to content

Commit

Permalink
[Otlozhu] Fix clang build.
Browse files Browse the repository at this point in the history
  • Loading branch information
0xd34df00d committed Oct 25, 2013
1 parent 6b06750 commit 170e8d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/plugins/otlozhu/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ set (RESOURCES otlozhuresources.qrc)
CreateTrs ("otlozhu" "en;ru_RU" COMPILED_TRANSLATIONS)
QT4_WRAP_UI (UIS_H ${FORMS})
QT4_ADD_RESOURCES (RCCS ${RESOURCES})
add_definitions (-DBOOST_SPIRIT_USE_PHOENIX_V3)

add_library (leechcraft_otlozhu SHARED
${COMPILED_TRANSLATIONS}
Expand Down
4 changes: 3 additions & 1 deletion src/plugins/otlozhu/icalparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix.hpp>
#include <boost/fusion/adapted.hpp>
#include <boost/fusion/sequence/intrinsic/at_c.hpp>
#include <boost/phoenix/fusion.hpp>
#include <QtDebug>
#include <interfaces/core/itagsmanager.h>
#include "core.h"
Expand Down Expand Up @@ -119,7 +121,7 @@ namespace Otlozhu
eol;

ItemBegin_ %= "BEGIN:" >>
qi::lexeme[+(qi::char_ - '\r' - '\n')] >>
qi::lexeme [+(qi::char_ - '\r' - '\n')] >>
eol;
ItemEnd_ = "END:" >>
qi::string (qi::_r1) >>
Expand Down

0 comments on commit 170e8d8

Please sign in to comment.