Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Revert to previous explicit soft float less operator #6320

Merged
merged 1 commit into from
Nov 15, 2018

Conversation

heifner
Copy link
Contributor

@heifner heifner commented Nov 15, 2018

Change Description

The name of a chainbase index is derived from the demangled type, see: https://github.com/EOSIO/chainbase/blob/8ca96ad6b18709d65a7d1f67f8893978f25babcf/include/chainbase/chainbase.hpp#L783

==before==
typedef secondary_index<float64_t,index_double_object_type,soft_double_less>::index_object index_double_object;
typedef secondary_index<float64_t,index_double_object_type,soft_double_less>::index_index index_double_index;

typedef secondary_index<float128_t,index_long_double_object_type,soft_long_double_less>::index_object index_long_double_object;
typedef secondary_index<float128_t,index_long_double_object_type,soft_long_double_less>::index_index index_long_double_index;
==after==
typedef secondary_index<float64_t,index_double_object_type>::index_object index_double_object;
typedef secondary_index<float64_t,index_double_object_type>::index_index index_double_index;

typedef secondary_index<float128_t,index_long_double_object_type>::index_object index_long_double_object;
typedef secondary_index<float128_t,index_long_double_object_type>::index_index index_long_double_index;

  • This PR reverts these changes so that the name used for the index is as it was before.

Consensus Changes

@heifner heifner requested a review from arhag November 15, 2018 01:34
@arhag arhag merged commit 285e03d into develop Nov 15, 2018
@arhag arhag deleted the fix-contract-secondary-cmp branch November 15, 2018 02:07
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants