| 1708 | } |
| 1709 | |
| 1710 | std::atomic<int64>* GetPointerToFuel(int64 initial_value) { |
| 1711 | static std::atomic<int64>* fuel = [&]() { |
| 1712 | std::atomic<int64>* fuel = new std::atomic<int64>; |
| 1713 | *fuel = initial_value; |
| 1714 | return fuel; |
| 1715 | }(); |
| 1716 | |
| 1717 | return fuel; |
| 1718 | } |
| 1719 | } // anonymous namespace |
| 1720 | |
| 1721 | bool IsCompilable( |
no outgoing calls
no test coverage detected