This website works better with JavaScript.
首頁
探索
說明
登入
cpp
/
cpplogging
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
* fixed bug in formatting of the 'line' property
master
bergmann
6 年之前
父節點
8bbb7206ba
當前提交
b9a9392f03
共有
1 個文件被更改
,包括
4 次插入
和
4 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-4
src/cpplogging/manager/consumer/formatting.cpp
+ 4
- 4
src/cpplogging/manager/consumer/formatting.cpp
查看文件
@@ -633,21 +633,21 @@ void consumer::write_formatted(const log_entry& e, const format_type& f, std::os
has_line_end = false;
switch (i.format)
{
case value_format::decimal:
os << e.line;
break;
case value_format::hex_lower:
os << std::hex
<< e.line
<< std::dec;
break;
default
:
case value_format::hex_upper
:
os << std::hex
<< std::uppercase
<< e.line
<< std::nouppercase
<< std::dec;
break;
default:
os << e.line;
break;
}
break;
Write
Preview
Loading…
取消
儲存