Giter Club home page Giter Club logo

Comments (5)

greg7mdp avatar greg7mdp commented on June 14, 2024

@sagaceilo, thank you very much for the report. I'll look into it asap, maybe over the week-end. Would you have a small sample that reproduces the issue? Also what happens, is it a build issue? Also are you using the latest version, I added support for non-copyable objects a couple weeks ago.

from sparsepp.

sagaceilo avatar sagaceilo commented on June 14, 2024

Hey!
Here is example:

#if 1
#	define SPP_NO_EXCEPTIONS
#	define SPP_NO_RTTI
#	include <sparsepp/sparsepp.h>

	template <typename HashType, typename ObjType>
	using THashMap = spp::sparse_hash_map<HashType, ObjType>;
#endif

#if 0
#	include <sparsehash/sparse_hash_map>

	template <typename HashType, typename ObjType>
	using THashMap = ::google::sparse_hash_map<HashType, ObjType>;
#endif

#if 0
#	include <unordered_map>

	template <typename HashType, typename ObjType>
	using THashMap = std::unordered_map<HashType, ObjType>;
#endif

class CNonCopyable
{
public:
	CNonCopyable( CNonCopyable const & ) = delete;
	const CNonCopyable& operator=( CNonCopyable const & ) = delete;
	CNonCopyable() = default;
};


struct Probe : CNonCopyable
{
	Probe() {}
	Probe( Probe && other ) {}
	void operator=( Probe && other )	{}
};
void main() {
THashMap<uint64_t,Probe> probes;

probes.insert( { 0, Probe() } );

for( auto& it : probes ) {}
}

I've tried cut as many non revelant code I've could. Hope that You will find this helpful. It runs and compiles using std::unordered_map.

from sparsepp.

greg7mdp avatar greg7mdp commented on June 14, 2024

Thank you @sagaceilo , your sample program is very useful. Somehow, using my versions of gcc and clang (4.8.3 and 3.8 on linux), your sample as-is does not compile even when using std::unordered_map, because of the insert with the initializer_list.

However, it does build with a simple change, replacing:
probes.insert( { 0, Probe() } );
with:
probes.insert( THashMap<uint64_t, Probe>::value_type(27, Probe()) );

I did update sparsepp a few minutes ago, and now your updated sample builds as well with sparsepp. Please let me know if this version is OK with you.

from sparsepp.

sagaceilo avatar sagaceilo commented on June 14, 2024

Now it works like a charm :) Thank you ;)

from sparsepp.

greg7mdp avatar greg7mdp commented on June 14, 2024

Great, thanks for letting me know, closing the issue.

from sparsepp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.