diff options
author | bd <bdunaisky@umass.edu> | 2025-04-12 01:38:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-12 01:38:39 +0000 |
commit | be2bc108dc112ae7e21d4a77f7bcbfac88d6fcd4 (patch) | |
tree | 08549aa6c7cbae114958df62f92c9e60eb5f114c /src/response.cc | |
parent | 101f0facf8002907ca6e19faabfdcf472c0c3152 (diff) | |
parent | 1fb7a9bd5eb41e87871bcbb3423caaabdd8ce1d9 (diff) |
Merge pull request #1 from bdunahu/bdunahu
First part of storage rework (see description)
Diffstat (limited to 'src/response.cc')
-rw-r--r-- | src/response.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/response.cc b/src/response.cc deleted file mode 100644 index 3d6e439..0000000 --- a/src/response.cc +++ /dev/null @@ -1,8 +0,0 @@ -#include "response.h" -#include <iostream> - -std::ostream &operator<<(std::ostream &os, Response r) -{ - const std::string nameR[] = {"OK", "WAIT", "BLOCKED", "STALLED"}; - return os << nameR[r]; -} |