diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-18 13:26:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-18 13:26:57 +0300 |
commit | 860e9114723f279ee1f79ed04d308d7af5fbd887 (patch) | |
tree | 530038d64b5116767ffdad5940685ca9e24e56ff /src/gui/widgets | |
parent | ff3f52136772eccf65cd031f7777e2b352946d5d (diff) | |
download | plus-860e9114723f279ee1f79ed04d308d7af5fbd887.tar.gz plus-860e9114723f279ee1f79ed04d308d7af5fbd887.tar.bz2 plus-860e9114723f279ee1f79ed04d308d7af5fbd887.tar.xz plus-860e9114723f279ee1f79ed04d308d7af5fbd887.zip |
fix compilation with some flags after adding restrict keywords.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/tabbedarea.cpp | 4 | ||||
-rw-r--r-- | src/gui/widgets/tabbedarea.h | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/widgets/tabbedarea.cpp b/src/gui/widgets/tabbedarea.cpp index 10150654e..9526c58bd 100644 --- a/src/gui/widgets/tabbedarea.cpp +++ b/src/gui/widgets/tabbedarea.cpp @@ -177,8 +177,8 @@ gcn::Widget *TabbedArea::getCurrentWidget() const return nullptr; } -void TabbedArea::addTab(Tab *restrict const tab, - gcn::Widget *restrict const widget) +void TabbedArea::addTab(Tab *const tab, + gcn::Widget *const widget) { if (!tab || !widget) return; diff --git a/src/gui/widgets/tabbedarea.h b/src/gui/widgets/tabbedarea.h index 6584747c6..449d8c51a 100644 --- a/src/gui/widgets/tabbedarea.h +++ b/src/gui/widgets/tabbedarea.h @@ -94,8 +94,7 @@ class TabbedArea final : public Widget2, * @param tab The tab widget for the tab. * @param widget The widget to view when the tab is selected. */ - void addTab(Tab *restrict const tab, - gcn::Widget *restrict const widget); + void addTab(Tab *const tab, gcn::Widget *const widget); void addTab(const std::string &caption, gcn::Widget *const widget); |