Unverified Commit c2a09de9 authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Compiler work-arounds. (#807)

parent fb6981b8
......@@ -35,13 +35,13 @@ int main()
std::cout << "Stateless: ";
int counter = 0;
{
auto r{stateless_count(counter)};
auto r(stateless_count(counter));
counter = std::get<1>(r);
std::cout << std::get<0>(r);
}
std::cout << ", ";
{
auto r{stateless_count(counter)};
auto r(stateless_count(counter));
counter = std::get<1>(r);
std::cout << std::get<0>(r);
}
......
......@@ -16,6 +16,8 @@
#pragma once
#include <numeric>
#include "ngraph/axis_set.hpp"
#include "ngraph/node.hpp"
#include "ngraph/op/broadcast.hpp"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment