From: Tobias Geerinckx-Rice Date: Wed, 3 Oct 2018 23:30:42 +0200 Subject: [PATCH] bastet: Change source of unordered_set. This allows building bastet 0.43.2 with boost >=1.66. It was backported verbatim from the upstream master branch. From 0e03f8d4d6bc6949cf1c447e632ce0d1b98c4be1 Mon Sep 17 00:00:00 2001 From: Federico Poloni Date: Wed, 4 Oct 2017 19:35:01 +0200 Subject: [PATCH] Changed source of unordered_set (should hopefully fix #6 without reopening #1) --- BastetBlockChooser.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/BastetBlockChooser.hpp b/BastetBlockChooser.hpp index 992e556..7ee3b7c 100644 --- a/BastetBlockChooser.hpp +++ b/BastetBlockChooser.hpp @@ -23,8 +23,7 @@ #include "Well.hpp" -#include -#include +#include #include namespace Bastet{ @@ -75,7 +74,7 @@ namespace Bastet{ public: Searcher(BlockType b, const Well *well, Vertex v, WellVisitor *visitor); private: - std::tr1::unordered_set _visited; + boost::unordered_set _visited; //std::set _visited; ^^ the above is more efficient, we need to do many inserts BlockType _block; const Well *_well; ommit/gnu/services/dict.scm?id=0079dd7c8e9314249b1769b8360190038692d2f6'>commitdiff
AgeCommit message (Expand)Author
2022-11-18services: Add Shepherd 'configuration' action to various services....* gnu/services/avahi.scm (avahi-shepherd-service): Add 'actions' field. * gnu/services/base.scm (nscd-actions): Add call to 'shepherd-configuration-action'. * gnu/services/desktop.scm (upower-shepherd-service): Add 'actions' field. (elogind-shepherd-service): Likewise. * gnu/services/dict.scm (dicod-shepherd-service): Likewise. * gnu/services/networking.scm (openntpd-shepherd-service): Likewise. (tor-shepherd-service): Likewise. * gnu/services/ssh.scm (openssh-shepherd-service): Likewise. * gnu/services/web.scm (nginx-shepherd-service): Likewise. * gnu/services/xorg.scm (gdm-shepherd-service): Likewise. * gnu/tests/base.scm (run-basic-test)["nscd configuration action"]: New test. * doc/guix.texi (Services): Document it. Ludovic Courtès
2022-05-02services: Make sure Shepherd destructors match constructors....This is a followup to b06ecc57515d4e3c8b2228e8142654e9a26ba6e1, 211fe3f66e6dfdaa64974931c458ab1d92afc182, and fd57ce267c4083fe98242caa31075d2bd62903bf. * gnu/services/base.scm (guix-publish-shepherd-service): Change 'stop' method to use 'make-systemd-destructor' when 'make-systemd-constructor' is used. * gnu/services/dict.scm (dicod-shepherd-service): Change 'stop' method to use 'make-inetd-destructor' when 'make-inetd-constructor' is used. * gnu/services/messaging.scm (bitlbee-shepherd-service): Likewise. Ludovic Courtès
2022-05-01services: dicod: Use 'make-inetd-constructor'....* gnu/services/dict.scm (dicod-shepherd-service): Use 'make-inetd-constructor' in the 'start' method when available. Ludovic Courtès
2022-05-01services: dicod: Rewrite using 'least-authority-wrapper'....* gnu/services/dict.scm (dicod-shepherd-service): Rewrite using 'least-authority-wrapper' plus 'make-forkexec-constructor' instead of 'make-forkexec-constructor/container'. Ludovic Courtès