File: ReleaseNotes

package info (click to toggle)
vtk 5.8.0-13
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 130,524 kB
  • sloc: cpp: 1,129,256; ansic: 708,203; tcl: 48,526; python: 20,875; xml: 6,779; yacc: 4,208; perl: 3,121; java: 2,788; lex: 931; sh: 660; asm: 471; makefile: 299
file content (34 lines) | stat: -rw-r--r-- 1,365 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
VTK Addendum:

The UTF8-CPP library is used as an internal implementation detail in the vtkUnicodeString
class.  We've made several VTK-specific modifications to support older compilers:

* Renamed the "utf8" namespace to "vtk_utf8" to avoid clashes with system copies of the library.

* Replaced references to iterator_traits<>::difference_type with vtkstd::string::difference_type
  to mollify MSVC 6.  This significantly reduces the generality of the library, but meets the
  needs of vtkUnicodeString.

* Altered utf16to8() to work with vtkstd::back_insert_iterator, which also reduces the
  generality of the library.

For these reasons, we strongly discourage use of the VTK-specific version of UTF8-CPP, which is
a private part the VTK API, and subject to removal or revision at any time.  See the following
links for the full version of the library:

http://utfcpp.sourceforge.net/
http://sourceforge.net/projects/utfcpp

The VTK team.

------------------------------------------------------------------------------------------------

utf8 cpp library
Release 2.1

This is a minor feature release - added the function peek_next. 

Changes from version 2.o
- Implemented feature request [ 1770746 ] "Provide a const version of next() (some sort of a peek() )

Files included in the release: utf8.h, core.h, checked.h, unchecked.h, utf8cpp.html, ReleaseNotes