summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morrow <andrew.morrow@10gen.com>2019-10-10 20:18:39 +0000
committerevergreen <evergreen@mongodb.com>2019-10-10 20:18:39 +0000
commit7f0f343c4ee6635ed795b22d80ef3cd9553f02f1 (patch)
treea2f6dc400ce17c84d46d032c94a1cfcf4ace83f5
parentc4b5fd5f87de0ba8ffeaf86388f244a4a294c504 (diff)
downloadmongo-7f0f343c4ee6635ed795b22d80ef3cd9553f02f1.tar.gz
SERVER-43450 Remove stale workaround and associated todo note
-rw-r--r--src/mongo/db/query/cursor_response.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mongo/db/query/cursor_response.h b/src/mongo/db/query/cursor_response.h
index 5458d4a75af..a92750dfeee 100644
--- a/src/mongo/db/query/cursor_response.h
+++ b/src/mongo/db/query/cursor_response.h
@@ -151,15 +151,6 @@ void appendGetMoreResponseObject(long long cursorId,
BSONObjBuilder* builder);
class CursorResponse {
-// In order to work around a bug in the compiler on the s390x platform, the IDL needs to invoke the
-// copy constructor on that platform.
-// TODO SERVER-32467 Remove this ifndef once the compiler has been fixed and the workaround has been
-// removed.
-#ifndef __s390x__
- CursorResponse(const CursorResponse&) = delete;
- CursorResponse& operator=(const CursorResponse&) = delete;
-#endif
-
public:
enum class ResponseType {
InitialResponse,
@@ -202,15 +193,6 @@ public:
CursorResponse(CursorResponse&& other) = default;
CursorResponse& operator=(CursorResponse&& other) = default;
-// In order to work around a bug in the compiler on the s390x platform, the IDL needs to invoke the
-// copy constructor on that platform.
-// TODO SERVER-32467 Remove this ifndef once the compiler has been fixed and the workaround has been
-// removed.
-#ifdef __s390x__
- CursorResponse(const CursorResponse& other) = default;
- CursorResponse& operator=(const CursorResponse& other) = default;
-#endif
-
//
// Accessors.
//