이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
cpp
/
cpplogging
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
* 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;
쓰기
미리보기
불러오는 중...
취소
저장