summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Sluift/ElementConvertors')
-rw-r--r--Sluift/ElementConvertors/DefaultElementConvertor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Sluift/ElementConvertors/DefaultElementConvertor.cpp b/Sluift/ElementConvertors/DefaultElementConvertor.cpp
index 75e6706..d3d60ff 100644
--- a/Sluift/ElementConvertors/DefaultElementConvertor.cpp
+++ b/Sluift/ElementConvertors/DefaultElementConvertor.cpp
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2013-2016 Isode Limited. 2 * Copyright (c) 2013-2019 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
@@ -20,7 +20,7 @@ DefaultElementConvertor::~DefaultElementConvertor() {
20} 20}
21 21
22std::shared_ptr<Element> DefaultElementConvertor::convertFromLua(lua_State*, int, const std::string& type) { 22std::shared_ptr<Element> DefaultElementConvertor::convertFromLua(lua_State*, int, const std::string& type) {
23 SWIFT_LOG(warning) << "Unable to convert type '" << type << "'" << std::endl; 23 SWIFT_LOG(warning) << "Unable to convert type '" << type << "'";
24 return std::shared_ptr<Element>(); 24 return std::shared_ptr<Element>();
25} 25}
26 26