From 65808ba4eccf59f07b72bf68c90d256d01dde80f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 25 Oct 2017 15:32:07 +0200 Subject: gnu: sssd: Add missing word to description. * gnu/packages/sssd.scm (sssd)[description]: Fix typo. --- gnu/packages/sssd.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/sssd.scm b/gnu/packages/sssd.scm index 42ee8d64aa..95811d612b 100644 --- a/gnu/packages/sssd.scm +++ b/gnu/packages/sssd.scm @@ -169,7 +169,7 @@ fundamental object types for C.") (description "SSSD is a system daemon. Its primary function is to provide access to identity and authentication remote resource through a common framework that can provide caching and offline support to the system. It -provides PAM and NSS modules, and in the future will D-BUS based interfaces -for extended user information. It also provides a better database to store -local users as well as extended user data.") +provides PAM and NSS modules, and in the future will support D-BUS based +interfaces for extended user information. It also provides a better database +to store local users as well as extended user data.") (license license:gpl3+))) -- cgit v1.2.3 class='tabs'> aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/llvm-3.6-fix-build-with-gcc-10.patch
blob: 4982587d155e1846f910722d6d65945acd16c5c4 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Adapted from https://github.com/digego/extempore/pull/322/files

--- a/include/llvm/IR/ValueMap.h	2015-08-04 00:30:24.000000000 +0200
+++ b/include/llvm/IR/ValueMap.h	2018-07-14 21:09:09.769502736 +0200
@@ -99,7 +99,7 @@
   explicit ValueMap(const ExtraData &Data, unsigned NumInitBuckets = 64)
       : Map(NumInitBuckets), Data(Data) {}

-  bool hasMD() const { return MDMap; }
+  bool hasMD() const { return static_cast<bool>(MDMap); }
   MDMapT &MD() {
     if (!MDMap)
       MDMap.reset(new MDMapT);