Skip to content

Commit

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

- Previously int was pass instead of unsigned int in
  pressio_options::set_type when passed pressio_option_uint32_type.
  Now it correctly passes unsiged int.
  • Loading branch information
robertu94 committed Aug 29, 2019
1 parent 43af9e2 commit 80f3677
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.14 FATAL_ERROR)
project(libpressio VERSION "0.10.0" LANGUAGES CXX C)
project(libpressio VERSION "0.10.1" LANGUAGES CXX C)

enable_testing()
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
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 © 2019 , UChicago Argonne, LLC
All Rights Reserved
[libpressio, Version 0.10.0]
[libpressio, Version 0.10.1]
Robert Underwood
Argonne National Laboratory

Expand Down
2 changes: 1 addition & 1 deletion include/libpressio_ext/cpp/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ struct pressio_option final {
option = std::optional<int>();
break;
case pressio_option_uint32_type:
option = std::optional<int>();
option = std::optional<unsigned int>();
break;
case pressio_option_float_type:
option = std::optional<float>();
Expand Down

0 comments on commit 80f3677

Please sign in to comment.