1. Oct 23, 2019
    • Lukasz Dorau's avatar
      Fix installing libpmem-*.rpm · eec37e60
      Lukasz Dorau authored
      Replace 'libpmem-*.rpm' with 'libpmem*.rpm'.
      It fixes following errors on openSUSE:
      
      error: Failed dependencies:
              libpmemobj1 = 1.7-1.suse1500 is needed by libpmemobj-debug-1.7-1.suse1500.x86_64
              libpmemobj1 = 1.7-1.suse1500 is needed by libpmemobj-devel-1.7-1.suse1500.x86_64
      
      error: Failed dependencies:
              libpmem1 = 1.7-1.suse1500 is needed by libpmem-debug-1.7-1.suse1500.x86_64
              libpmem1 = 1.7-1.suse1500 is needed by libpmem-devel-1.7-1.suse1500.x86_64
      eec37e60
  2. Oct 22, 2019
  3. Oct 21, 2019
  4. Oct 16, 2019
  5. Oct 14, 2019
    • Igor Chorążewicz's avatar
      Merge pull request #480 from... · e23ac326
      Igor Chorążewicz authored
      Merge pull request #480 from ldorau/common-fix-invalid-TRAVIS_COMMIT_RANGE-in-case-of-non-upstream-repository
      
      common: fix invalid TRAVIS_COMMIT_RANGE in case of non-upstream repository
      e23ac326
  6. Oct 11, 2019
  7. Oct 10, 2019
  8. Oct 08, 2019
  9. Oct 07, 2019
    • Igor Chorazewicz's avatar
      Change header_features constant to a function in concurrent_hash_map. · 4d1b43d4
      Igor Chorazewicz authored
      header_features was only declared (not defined) in concurrent_hash_map header.
      This means that (until C++17) it can be used only in places where address of
      this constant is not needed. In operator != we access one member of header_fatures
      which requrires it to be declared. This only fails for some compilers like clang-9
      because rest of the evaluate this expression at compile time (this is a compiler
      decision whether to do this at compile time or runtime).
      
      Fix this issue by creating function header_features().
      4d1b43d4
  10. Oct 03, 2019