Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
f06fd6f0
Commit
f06fd6f0
authored
Mar 15, 2017
by
François Grisez
Browse files
Fix C++ wrapper generation
parent
acf0600e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
wrappers/cpp/class_impl.mustache
wrappers/cpp/class_impl.mustache
+1
-1
wrappers/cpp/genwrapper.py
wrappers/cpp/genwrapper.py
+2
-2
No files found.
wrappers/cpp/class_impl.mustache
View file @
f06fd6f0
...
...
@@ -16,7 +16,7 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "linphone.hh"
#include "linphone
++/linphone
.hh"
using namespace
{{{
namespace
}}}
;
...
...
wrappers/cpp/genwrapper.py
View file @
f06fd6f0
...
...
@@ -651,14 +651,14 @@ def main():
srcdir
=
args
.
outputdir
+
'/src'
try
:
os
.
m
k
dir
(
includedir
)
os
.
m
ake
dir
s
(
includedir
)
except
OSError
as
e
:
if
e
.
errno
!=
errno
.
EEXIST
:
print
(
"Cannot create '{0}' dircetory: {1}"
.
format
(
includedir
,
e
.
strerror
))
sys
.
exit
(
1
)
try
:
os
.
m
k
dir
(
srcdir
)
os
.
m
ake
dir
s
(
srcdir
)
except
OSError
as
e
:
if
e
.
errno
!=
errno
.
EEXIST
:
print
(
"Cannot create '{0}' dircetory: {1}"
.
format
(
srcdir
,
e
.
strerror
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment