Skip to content
Snippets Groups Projects

Fix gcc11 compilation

Merged Marco Cattaneo requested to merge fix-gcc11-run2 into run2-patches
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -77,9 +77,9 @@ namespace lwt {
// graph node configuration
struct NodeConfig {
enum class Type { INPUT, INPUT_SEQUENCE, FEED_FORWARD, CONCATENATE, SEQUENCE, TIME_DISTRIBUTED };
Type type;
std::vector<size_t> sources;
int index; // input node size, or layer number
Type type;
std::vector<std::size_t> sources;
int index; // input node size, or layer number
};
} // namespace lwt
Loading