diff options
author | XhmikosR <xhmikosr@gmail.com> | 2016-05-03 19:02:55 +0300 |
---|---|---|
committer | XhmikosR <xhmikosr@gmail.com> | 2016-05-03 19:02:55 +0300 |
commit | 28eead0d75876ffdd89ef0d735203ecf8ed3efc0 (patch) | |
tree | b1ff4c1fdf5220c1f14eb22dc171053a18311a59 /scintilla/doc/SciCoding.html | |
parent | 68b11903fc662cd538ed2324585e50c508cd4014 (diff) | |
download | notepad2-mod-28eead0d75876ffdd89ef0d735203ecf8ed3efc0.zip notepad2-mod-28eead0d75876ffdd89ef0d735203ecf8ed3efc0.tar.gz notepad2-mod-28eead0d75876ffdd89ef0d735203ecf8ed3efc0.tar.bz2 |
Update Scintilla to v3.6.5 (HG 84a9583).
Diffstat (limited to 'scintilla/doc/SciCoding.html')
-rw-r--r-- | scintilla/doc/SciCoding.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scintilla/doc/SciCoding.html b/scintilla/doc/SciCoding.html index f2c2624..a487031 100644 --- a/scintilla/doc/SciCoding.html +++ b/scintilla/doc/SciCoding.html @@ -145,8 +145,7 @@ <p>
Do not use old C style casts like (char *)s. Instead use the most strict form of C++
cast possible like const_cast<char *>(s). Use static_cast and const_cast
- where possible rather than reinterpret_cast. Because the code is compiled with
- run-time type information turned off, dynamic_cast will not work.
+ where possible rather than reinterpret_cast.
</p>
<p>
The benefit to using the new style casts is that they explicitly detail what evil is
|