repository. This fixes a problem with the max level of braces that can be handled. Upstream commit message: ----------------------------------------------------------- Author: Guy Maurel <guy.j@maurel.de> Date: Thu Nov 12 18:27:38 2020 +0100 look for a debug loop M src/align_func_proto.cpp M src/logger.cpp ----------------------------------------------------------- Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>pull/3/head
parent
008bc84f75
commit
69a1eb8293
@ -0,0 +1,25 @@
|
||||
Backported commit 64d93e3fb from upstream git repository.
|
||||
--- a/src/align_func_proto.cpp
|
||||
+++ b/src/align_func_proto.cpp
|
||||
@@ -47,8 +47,8 @@
|
||||
log_rule_B("align_var_def_amp_style");
|
||||
size_t myamp_style = options::align_var_def_amp_style();
|
||||
|
||||
- const size_t max_level_count = 8;
|
||||
- const size_t max_brace_level = 8;
|
||||
+ const size_t max_level_count = 16;
|
||||
+ const size_t max_brace_level = 16;
|
||||
|
||||
AlignStack many_as[max_level_count + 1][max_brace_level + 1];
|
||||
|
||||
--- a/src/logger.cpp
|
||||
+++ b/src/logger.cpp
|
||||
@@ -194,7 +194,7 @@
|
||||
return;
|
||||
}
|
||||
// the value of buffer_length is experimental
|
||||
- const int buffer_length = 4100;
|
||||
+ const int buffer_length = 40000;
|
||||
char buf[buffer_length];
|
||||
|
||||
// it MUST be a 'unsigned int' variable to be runable under windows
|
Loading…
Reference in new issue