<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>「Compiler Warning C4819 (C++)」的迴響</title>
	<atom:link href="http://blog.dragon2.net/2006/03/08/300.php/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.dragon2.net/2006/03/08/300.php</link>
	<description>clsung&#039;s blog site</description>
	<lastBuildDate>Wed, 26 Oct 2011 00:09:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>由：clsung</title>
		<link>http://blog.dragon2.net/2006/03/08/300.php/comment-page-1#comment-32225</link>
		<dc:creator>clsung</dc:creator>
		<pubDate>Tue, 03 Oct 2006 14:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragon2.net/archives/2006/03/08/300.php#comment-32225</guid>
		<description>Hi luoge, Thank you for your information.</description>
		<content:encoded><![CDATA[<p>Hi luoge, Thank you for your information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：luoge</title>
		<link>http://blog.dragon2.net/2006/03/08/300.php/comment-page-1#comment-32036</link>
		<dc:creator>luoge</dc:creator>
		<pubDate>Tue, 03 Oct 2006 04:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragon2.net/archives/2006/03/08/300.php#comment-32036</guid>
		<description>I just found there is a software &quot;FAR&quot;, which can convert ansi files to unicode files. I have compiled the library with vc++ 2005 successfully after doing the conversion.

http://www.helpware.net/FAR/help/Unicode.htm</description>
		<content:encoded><![CDATA[<p>I just found there is a software "FAR", which can convert ansi files to unicode files. I have compiled the library with vc++ 2005 successfully after doing the conversion.</p>
<p><a href="http://www.helpware.net/FAR/help/Unicode.htm" rel="nofollow">http://www.helpware.net/FAR/help/Unicode.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>由：b6s</title>
		<link>http://blog.dragon2.net/2006/03/08/300.php/comment-page-1#comment-6071</link>
		<dc:creator>b6s</dc:creator>
		<pubDate>Wed, 08 Mar 2006 05:59:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragon2.net/archives/2006/03/08/300.php#comment-6071</guid>
		<description>VC compiler 在以前就很奇怪，如果程式碼開頭有 BOM 就沒問題，但是 VS IDE 在存檔時卻又會把 BOM 拿掉。</description>
		<content:encoded><![CDATA[<p>VC compiler 在以前就很奇怪，如果程式碼開頭有 BOM 就沒問題，但是 VS IDE 在存檔時卻又會把 BOM 拿掉。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：clsung</title>
		<link>http://blog.dragon2.net/2006/03/08/300.php/comment-page-1#comment-6070</link>
		<dc:creator>clsung</dc:creator>
		<pubDate>Wed, 08 Mar 2006 03:02:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragon2.net/archives/2006/03/08/300.php#comment-6070</guid>
		<description>嗯，jeffhung 你的建議不錯，不過我在 Win32 上習慣用 boost 囉，所以要換也很麻煩，剛也 upload 一張 screenshot 在 flickr 上，可以看到在 Windows  下之所以不能生出 library 的原因為是因為會誤判註解啦</description>
		<content:encoded><![CDATA[<p>嗯，jeffhung 你的建議不錯，不過我在 Win32 上習慣用 boost 囉，所以要換也很麻煩，剛也 upload 一張 screenshot 在 flickr 上，可以看到在 Windows  下之所以不能生出 library 的原因為是因為會誤判註解啦</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：jeffhung</title>
		<link>http://blog.dragon2.net/2006/03/08/300.php/comment-page-1#comment-6069</link>
		<dc:creator>jeffhung</dc:creator>
		<pubDate>Wed, 08 Mar 2006 02:57:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragon2.net/archives/2006/03/08/300.php#comment-6069</guid>
		<description>C4819 我最近也碰到了，請參見我這篇筆記：《&lt;a href=&quot;http://www.jeffhung.net/blog/articles/jeffhung/473/&quot; rel=&quot;nofollow&quot;&gt;Subversion Issue 2332: Keyword expansion in non-UTF8 documents results in mixed charsets&lt;/a&gt;》，剛看了一下，boost 是用 CVS，不確定 CVS 是不是也有像 Subversion 這樣的問題存在。不過，我想問題應該不是出在 C4819 上，warning 理論上不會阻擋後續的 compile/link。

建議要用 regex 的話，PCRE 稍微方便些。Boost.Regex 太 C++ oriented 了，所以繼承了眾多的 C++ 原罪，尤其是身處 boost 這個「逞技」味極濃的 library，更是麻煩，若有需要 porting 的話，會哭到死。

不過用 PCRE 的話，轉碼、算位置、以及 replace 等都要自己稍微包一下，剛開始用時會比較辛苦就是了。:-)</description>
		<content:encoded><![CDATA[<p>C4819 我最近也碰到了，請參見我這篇筆記：《<a href="http://www.jeffhung.net/blog/articles/jeffhung/473/" rel="nofollow">Subversion Issue 2332: Keyword expansion in non-UTF8 documents results in mixed charsets</a>》，剛看了一下，boost 是用 CVS，不確定 CVS 是不是也有像 Subversion 這樣的問題存在。不過，我想問題應該不是出在 C4819 上，warning 理論上不會阻擋後續的 compile/link。</p>
<p>建議要用 regex 的話，PCRE 稍微方便些。Boost.Regex 太 C++ oriented 了，所以繼承了眾多的 C++ 原罪，尤其是身處 boost 這個「逞技」味極濃的 library，更是麻煩，若有需要 porting 的話，會哭到死。</p>
<p>不過用 PCRE 的話，轉碼、算位置、以及 replace 等都要自己稍微包一下，剛開始用時會比較辛苦就是了。:-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：clsung</title>
		<link>http://blog.dragon2.net/2006/03/08/300.php/comment-page-1#comment-6068</link>
		<dc:creator>clsung</dc:creator>
		<pubDate>Wed, 08 Mar 2006 02:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragon2.net/archives/2006/03/08/300.php#comment-6068</guid>
		<description>唔，問題不是 project setting，是因為 bjam 會去呼叫 VC 的 compiler ，啊這裡就會有問題了。因為那個 lib*.lib 或 *.lib *.dll 這些函式庫就會有缺了。 :(</description>
		<content:encoded><![CDATA[<p>唔，問題不是 project setting，是因為 bjam 會去呼叫 VC 的 compiler ，啊這裡就會有問題了。因為那個 lib*.lib 或 *.lib *.dll 這些函式庫就會有缺了。 <img src='http://blog.dragon2.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>由：pest</title>
		<link>http://blog.dragon2.net/2006/03/08/300.php/comment-page-1#comment-6067</link>
		<dc:creator>pest</dc:creator>
		<pubDate>Wed, 08 Mar 2006 01:41:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dragon2.net/archives/2006/03/08/300.php#comment-6067</guid>
		<description>要不要先把 project 的語系改成 non-unicode 看看? Properties -&gt; General -&gt; Character set -&gt; Not set 或是 Use multi-byte character set...</description>
		<content:encoded><![CDATA[<p>要不要先把 project 的語系改成 non-unicode 看看? Properties -&gt; General -&gt; Character set -&gt; Not set 或是 Use multi-byte character set&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

