Skip to content

Commit 7b9254f

Browse files
committed
Remove CPlusPlus operator overloading for now
1 parent 4c2df8b commit 7b9254f

File tree

89 files changed

+1
-625
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+1
-625
lines changed

Src/FastData.Generator.CPlusPlus.Tests/FastData.Generator.CPlusPlus.Tests.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,4 @@
99
<ProjectReference Include="..\FastData.InternalShared\FastData.InternalShared.csproj" />
1010
</ItemGroup>
1111

12-
<ItemGroup>
13-
<Folder Include="Features\" />
14-
</ItemGroup>
15-
1612
</Project>

Src/FastData.Generator.CPlusPlus.Tests/Features/ObjectSupportTest-ArrayStructure_Int32_3.verified.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,4 @@ public:
5959
static constexpr size_t item_count = 3;
6060
static constexpr int32_t min_key = 1;
6161
static constexpr int32_t max_key = 3;
62-
63-
public:
64-
ArrayStructure_Int32_3() = delete;
65-
ArrayStructure_Int32_3(const ArrayStructure_Int32_3&) = delete;
66-
ArrayStructure_Int32_3& operator=(const ArrayStructure_Int32_3&) = delete;
67-
ArrayStructure_Int32_3(ArrayStructure_Int32_3&&) = delete;
68-
ArrayStructure_Int32_3& operator=(ArrayStructure_Int32_3&&) = delete;
6962
};

Src/FastData.Generator.CPlusPlus.Tests/Features/ObjectSupportTest-BinarySearchStructure_Int32_3.verified.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,4 @@ public:
7878
static constexpr size_t item_count = 3;
7979
static constexpr int32_t min_key = 1;
8080
static constexpr int32_t max_key = 3;
81-
82-
public:
83-
BinarySearchStructure_Int32_3() = delete;
84-
BinarySearchStructure_Int32_3(const BinarySearchStructure_Int32_3&) = delete;
85-
BinarySearchStructure_Int32_3& operator=(const BinarySearchStructure_Int32_3&) = delete;
86-
BinarySearchStructure_Int32_3(BinarySearchStructure_Int32_3&&) = delete;
87-
BinarySearchStructure_Int32_3& operator=(BinarySearchStructure_Int32_3&&) = delete;
8881
};

Src/FastData.Generator.CPlusPlus.Tests/Features/ObjectSupportTest-ConditionalStructure_Int32_3.verified.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,4 @@ public:
5959
static constexpr size_t item_count = 3;
6060
static constexpr int32_t min_key = 1;
6161
static constexpr int32_t max_key = 3;
62-
63-
public:
64-
ConditionalStructure_Int32_3() = delete;
65-
ConditionalStructure_Int32_3(const ConditionalStructure_Int32_3&) = delete;
66-
ConditionalStructure_Int32_3& operator=(const ConditionalStructure_Int32_3&) = delete;
67-
ConditionalStructure_Int32_3(ConditionalStructure_Int32_3&&) = delete;
68-
ConditionalStructure_Int32_3& operator=(ConditionalStructure_Int32_3&&) = delete;
6962
};

Src/FastData.Generator.CPlusPlus.Tests/Features/ObjectSupportTest-HashTablePerfectStructure_Int32_3.verified.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,4 @@ public:
6969
static constexpr size_t item_count = 3;
7070
static constexpr int32_t min_key = 1;
7171
static constexpr int32_t max_key = 3;
72-
73-
public:
74-
HashTablePerfectStructure_Int32_3() = delete;
75-
HashTablePerfectStructure_Int32_3(const HashTablePerfectStructure_Int32_3&) = delete;
76-
HashTablePerfectStructure_Int32_3& operator=(const HashTablePerfectStructure_Int32_3&) = delete;
77-
HashTablePerfectStructure_Int32_3(HashTablePerfectStructure_Int32_3&&) = delete;
78-
HashTablePerfectStructure_Int32_3& operator=(HashTablePerfectStructure_Int32_3&&) = delete;
7972
};

Src/FastData.Generator.CPlusPlus.Tests/Features/ObjectSupportTest-HashTableStructure_Int32_3.verified.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,4 @@ public:
9191
static constexpr size_t item_count = 3;
9292
static constexpr int32_t min_key = 1;
9393
static constexpr int32_t max_key = 3;
94-
95-
public:
96-
HashTableStructure_Int32_3() = delete;
97-
HashTableStructure_Int32_3(const HashTableStructure_Int32_3&) = delete;
98-
HashTableStructure_Int32_3& operator=(const HashTableStructure_Int32_3&) = delete;
99-
HashTableStructure_Int32_3(HashTableStructure_Int32_3&&) = delete;
100-
HashTableStructure_Int32_3& operator=(HashTableStructure_Int32_3&&) = delete;
10194
};

Src/FastData.Generator.CPlusPlus.Tests/Features/ObjectSupportTest-KeyLengthStructure_String_3.verified.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,4 @@ static bool try_lookup(const std::string_view key, const Person*& value) noexcep
5353
static constexpr size_t item_count = 3;
5454
static constexpr size_t min_key_length = 1;
5555
static constexpr size_t max_key_length = 3;
56-
57-
public:
58-
KeyLengthStructure_String_3() = delete;
59-
KeyLengthStructure_String_3(const KeyLengthStructure_String_3&) = delete;
60-
KeyLengthStructure_String_3& operator=(const KeyLengthStructure_String_3&) = delete;
61-
KeyLengthStructure_String_3(KeyLengthStructure_String_3&&) = delete;
62-
KeyLengthStructure_String_3& operator=(KeyLengthStructure_String_3&&) = delete;
6356
};

Src/FastData.Generator.CPlusPlus.Tests/Features/ObjectSupportTest-SingleValueStructure_Int32_1.verified.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,4 @@ public:
3939
static constexpr size_t item_count = 1;
4040
static constexpr int32_t min_key = 1;
4141
static constexpr int32_t max_key = 1;
42-
43-
public:
44-
SingleValueStructure_Int32_1() = delete;
45-
SingleValueStructure_Int32_1(const SingleValueStructure_Int32_1&) = delete;
46-
SingleValueStructure_Int32_1& operator=(const SingleValueStructure_Int32_1&) = delete;
47-
SingleValueStructure_Int32_1(SingleValueStructure_Int32_1&&) = delete;
48-
SingleValueStructure_Int32_1& operator=(SingleValueStructure_Int32_1&&) = delete;
4942
};

Src/FastData.Generator.CPlusPlus.Tests/Vectors/ArrayStructure_Byte_3.verified.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,4 @@ public:
3030
static constexpr size_t item_count = 3;
3131
static constexpr uint8_t min_key = 0;
3232
static constexpr uint8_t max_key = std::numeric_limits<uint8_t>::max();
33-
34-
public:
35-
ArrayStructure_Byte_3() = delete;
36-
ArrayStructure_Byte_3(const ArrayStructure_Byte_3&) = delete;
37-
ArrayStructure_Byte_3& operator=(const ArrayStructure_Byte_3&) = delete;
38-
ArrayStructure_Byte_3(ArrayStructure_Byte_3&&) = delete;
39-
ArrayStructure_Byte_3& operator=(ArrayStructure_Byte_3&&) = delete;
4033
};

Src/FastData.Generator.CPlusPlus.Tests/Vectors/ArrayStructure_Char_3.verified.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,4 @@ public:
3030
static constexpr size_t item_count = 3;
3131
static constexpr char min_key = 0;
3232
static constexpr char max_key = 127;
33-
34-
public:
35-
ArrayStructure_Char_3() = delete;
36-
ArrayStructure_Char_3(const ArrayStructure_Char_3&) = delete;
37-
ArrayStructure_Char_3& operator=(const ArrayStructure_Char_3&) = delete;
38-
ArrayStructure_Char_3(ArrayStructure_Char_3&&) = delete;
39-
ArrayStructure_Char_3& operator=(ArrayStructure_Char_3&&) = delete;
4033
};

0 commit comments

Comments
 (0)