summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Sluift/component.cpp')
-rw-r--r--Sluift/component.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/Sluift/component.cpp b/Sluift/component.cpp
index df96d43..c1b1da4 100644
--- a/Sluift/component.cpp
+++ b/Sluift/component.cpp
@@ -1,3 +1,3 @@
/*
- * Copyright (c) 2014-2016 Isode Limited.
+ * Copyright (c) 2014-2018 Isode Limited.
* All rights reserved.
@@ -7,4 +7,2 @@
#include <boost/assign/list_of.hpp>
-#include <boost/lambda/bind.hpp>
-#include <boost/lambda/lambda.hpp>
@@ -43,3 +41,2 @@
using namespace Swift;
-namespace lambda = boost::lambda;
@@ -101,3 +98,3 @@ SLUIFT_LUA_FUNCTION(Component, async_connect) {
std::string host;
- int port = 0;
+ unsigned short port = 0;
if (lua_istable(L, 2)) {
@@ -107,3 +104,3 @@ SLUIFT_LUA_FUNCTION(Component, async_connect) {
if (boost::optional<int> portInt = Lua::getIntField(L, 2, "port")) {
- port = *portInt;
+ port = boost::numeric_cast<unsigned short>(*portInt);
}
@@ -435,3 +432,5 @@ SLUIFT_LUA_FUNCTION(Component, get_next_event) {
event = component->getNextEvent(
- timeout, lambda::bind(&SluiftComponent::Event::type, lambda::_1) == *type);
+ timeout, [&](const SluiftComponent::Event& event) {
+ return event.type == *type;
+ });
}