Skip to content

Commit 110b913

Browse files
committed
Remove QSurv
1 parent fb76096 commit 110b913

File tree

8 files changed

+0
-818
lines changed

8 files changed

+0
-818
lines changed

src/Qubic.vcxproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
<ClInclude Include="contracts\QIP.h" />
4949
<ClInclude Include="contracts\QReservePool.h" />
5050
<ClInclude Include="contracts\QThirtyFour.h" />
51-
<ClInclude Include="contracts\QSurv.h" />
5251
<ClInclude Include="contracts\Pulse.h" />
5352
<ClInclude Include="contracts\TestExampleA.h" />
5453
<ClInclude Include="contracts\TestExampleB.h" />

src/Qubic.vcxproj.filters

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,10 +305,6 @@
305305
<ClInclude Include="contracts\QDuel.h">
306306
<Filter>contracts</Filter>
307307
</ClInclude>
308-
309-
<ClInclude Include="contracts\QSurv.h">
310-
<Filter>contracts</Filter>
311-
</ClInclude>
312308
<ClInclude Include="contracts\Pulse.h">
313309
<Filter>contracts</Filter>
314310
</ClInclude>

src/contract_core/contract_def.h

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -264,20 +264,6 @@
264264
#define CONTRACT_STATE2_TYPE VOTTUNBRIDGE2
265265
#include "contracts/VottunBridge.h"
266266

267-
#ifndef NO_QSURV
268-
269-
#undef CONTRACT_INDEX
270-
#undef CONTRACT_STATE_TYPE
271-
#undef CONTRACT_STATE2_TYPE
272-
273-
#define QSURV_CONTRACT_INDEX 26
274-
#define CONTRACT_INDEX QSURV_CONTRACT_INDEX
275-
#define CONTRACT_STATE_TYPE QSURV
276-
#define CONTRACT_STATE2_TYPE QSURV2
277-
#include "contracts/QSurv.h"
278-
279-
#endif
280-
281267
// new contracts should be added above this line
282268

283269
#ifdef INCLUDE_CONTRACT_TEST_EXAMPLES
@@ -389,9 +375,6 @@ constexpr struct ContractDescription
389375
{"QDUEL", 199, 10000, sizeof(QDUEL::StateData)}, // proposal in epoch 197, IPO in 198, construction and first use in 199
390376
{"PULSE", 204, 10000, sizeof(PULSE::StateData)}, // proposal in epoch 202, IPO in 203, construction and first use in 204
391377
{"VOTTUN", 206, 10000, sizeof(VOTTUNBRIDGE::StateData)}, // proposal in epoch 204, IPO in 205, construction and first use in 206
392-
#ifndef NO_QSURV
393-
{"QSURV", 207, 10000, sizeof(QSURV::StateData)}, // proposal in epoch 205, IPO in 206, construction and first use in 207
394-
#endif
395378

396379
// new contracts should be added above this line
397380
#ifdef INCLUDE_CONTRACT_TEST_EXAMPLES
@@ -514,9 +497,6 @@ static void initializeContracts()
514497
REGISTER_CONTRACT_FUNCTIONS_AND_PROCEDURES(QDUEL);
515498
REGISTER_CONTRACT_FUNCTIONS_AND_PROCEDURES(PULSE);
516499
REGISTER_CONTRACT_FUNCTIONS_AND_PROCEDURES(VOTTUNBRIDGE);
517-
#ifndef NO_QSURV
518-
REGISTER_CONTRACT_FUNCTIONS_AND_PROCEDURES(QSURV);
519-
#endif
520500
// new contracts should be added above this line
521501
#ifdef INCLUDE_CONTRACT_TEST_EXAMPLES
522502
REGISTER_CONTRACT_FUNCTIONS_AND_PROCEDURES(TESTEXA);

0 commit comments

Comments
 (0)