Skip to content

Commit

Permalink
libpressio version 0.31.1
Browse files Browse the repository at this point in the history
Bug Fix

+ Previously including the dtype c++ module caused a multiple include
  error if multiple files included it, added a header guard
  • Loading branch information
robertu94 committed Jan 29, 2020
1 parent 3b69137 commit 07d4f8e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
project(libpressio VERSION "0.31.0" LANGUAGES CXX C)
project(libpressio VERSION "0.31.1" LANGUAGES CXX C)

#correct was to set a default build type
# https://blog.kitware.com/cmake-and-the-default-build-type/
Expand Down
2 changes: 1 addition & 1 deletion COPYRIGHT.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Copyright © 2020 , UChicago Argonne, LLC
All Rights Reserved
[libpressio, Version 0.31.0]
[libpressio, Version 0.31.1]
Robert Underwood
Argonne National Laboratory

Expand Down
3 changes: 3 additions & 0 deletions include/libpressio_ext/cpp/dtype.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#ifndef LIBPRESSIO_DTYPE_CPP
#define LIBPRESSIO_DTYPE_CPP
#include <pressio_dtype.h>

/**
Expand All @@ -22,3 +24,4 @@ constexpr pressio_dtype pressio_dtype_from_type() {
);
}

#endif /* end of include guard: LIBPRESSIO_DTYPE_CPP */

0 comments on commit 07d4f8e

Please sign in to comment.