Skip to content

Commit c587146

Browse files
committed
try fix windows bug 0017... --full-big-vec
1 parent fd0a035 commit c587146

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/world_builder/parameters.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -794,8 +794,8 @@ namespace WorldBuilder
794794
constexpr int n1 = 40962;
795795
constexpr int n_layers = 9;
796796

797-
float depth_data[n1 * n_layers] = {0};
798-
std::cout << depth_data[0] << std::endl;
797+
std::vector<float> depth_data(n1 * n_layers,0);
798+
//std::cout << depth_data[0] << std::endl;
799799
char tessfile[255];
800800
snprintf(tessfile, 254, "%s/litho_depth_data.bin", litho_1_0_path.c_str());
801801

0 commit comments

Comments
 (0)