Skip to content

Commit

Permalink
Fix nested_views icc warnings, correct release date
Browse files Browse the repository at this point in the history
  • Loading branch information
lindstro authored and salasoom committed Oct 1, 2018
1 parent a1869ac commit 966603e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSIONS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# zfp Release Notes

## 0.5.4 (September 30, 2018)
## 0.5.4 (October 1, 2018)

- Added support for CUDA fixed-rate compression and decompression.

Expand Down
2 changes: 1 addition & 1 deletion array/zfp/view2.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class nested_view1 : public preview {

protected:
// construction--perform shallow copy of (sub)array
friend class array2::nested_view2;
friend class nested_view2;
explicit nested_view1(array2* array) : preview(array) {}
explicit nested_view1(array2* array, uint x, uint y, uint nx, uint ny) : preview(array, x, y, nx, ny) {}
};
Expand Down
4 changes: 2 additions & 2 deletions array/zfp/view3.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class nested_view1 : public preview {

protected:
// construction--perform shallow copy of (sub)array
friend class array3::nested_view2;
friend class nested_view2;
explicit nested_view1(array3* array) : preview(array) {}
explicit nested_view1(array3* array, uint x, uint y, uint z, uint nx, uint ny, uint nz) : preview(array, x, y, z, nx, ny, nz) {}
};
Expand Down Expand Up @@ -178,7 +178,7 @@ class nested_view2 : public preview {

protected:
// construction--perform shallow copy of (sub)array
friend class array3::nested_view3;
friend class nested_view3;
explicit nested_view2(array3* array) : preview(array) {}
explicit nested_view2(array3* array, uint x, uint y, uint z, uint nx, uint ny, uint nz) : preview(array, x, y, z, nx, ny, nz) {}
};
Expand Down
2 changes: 1 addition & 1 deletion docs/source/versions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Release Notes
=============

zfp 0.5.4, September 30, 2018
zfp 0.5.4, October 1, 2018

- Added support for CUDA fixed-rate compression and decompression.

Expand Down

0 comments on commit 966603e

Please sign in to comment.