Commit 0cb0a734 authored by Orvid King's avatar Orvid King Committed by Facebook Github Bot

Don't truncate window size

Summary: As per title.

Reviewed By: yfeldblum

Differential Revision: D8103967

fbshipit-source-id: 27fbc45df3ee1ec8934ea3c16aaa490fb06ef622
parent 5ef66c9e
......@@ -578,7 +578,7 @@ class DeferredExecutor final : public Executor {
struct WindowFakeVector {
using iterator = std::vector<size_t>::iterator;
WindowFakeVector(int size) : size_(size) {}
WindowFakeVector(size_t size) : size_(size) {}
size_t operator[](const size_t index) const {
return index;
......
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