[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Fix build breaks in ncurses c++ binding
From: |
Adam Jiang |
Subject: |
Fix build breaks in ncurses c++ binding |
Date: |
Sat, 2 Aug 2014 00:11:52 +0900 |
This patch fixes building breaks in c++ directory.
The first issue fixed by this patch is about constructors which are declared
with Form** type by passed Form* type. Second one is about the method which
convert template parameter T* to void*. It should not work with ‘const_cast’.
The patch changed them into a combination with ‘const_cast’ and
‘reinterpret_cast’ that do actually convert types.
0001-Fix-build-breaks-in-C-code.patch
Description: Binary data
- Fix build breaks in ncurses c++ binding,
Adam Jiang <=
- Re: Fix build breaks in ncurses c++ binding, Adam Jiang, 2014/08/01
- Re: Fix build breaks in ncurses c++ binding, Thomas Dickey, 2014/08/01
- Re: Fix build breaks in ncurses c++ binding, Adam Jiang, 2014/08/02
- Re: Fix build breaks in ncurses c++ binding, Thomas Dickey, 2014/08/02
- Re: Fix build breaks in ncurses c++ binding, Thomas Dickey, 2014/08/02
- Re: Fix build breaks in ncurses c++ binding, Adam Jiang, 2014/08/02
- Re: Fix build breaks in ncurses c++ binding, Adam Jiang, 2014/08/02
- Re: Fix build breaks in ncurses c++ binding, Thomas Dickey, 2014/08/03
- Re: Fix build breaks in ncurses c++ binding, Adam Jiang, 2014/08/03
- Re: Fix build breaks in ncurses c++ binding, Adam Jiang, 2014/08/03