Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
cpp
/
cpplogging
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
* fixed bug in formatting of the 'line' property
master
bergmann
6 anos atrás
pai
8bbb7206ba
commit
b9a9392f03
1 arquivos alterados
com
4 adições
e
4 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+4
-4
src/cpplogging/manager/consumer/formatting.cpp
+ 4
- 4
src/cpplogging/manager/consumer/formatting.cpp
Ver arquivo
@@ -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;
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar