Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

three small comment fixes #1269

Merged
merged 1 commit into from
Mar 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bindings/C/c/adios2_c_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*
* adios2_c_internal.h
* adios2_c_internal.h: helper functionality for use within the C bindings,
* but not part of the public interface
*
* Created on: Feb 9, 2019
* Author: Kai Germaschewski <[email protected]>
Expand Down
3 changes: 1 addition & 2 deletions source/adios2/ADIOSTypes.inl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
* Distributed under the OSI-approved Apache License, Version 2.0. See
* accompanying file Copyright.txt for details.
*
* ADIOSTypes.h : public header that contains "using/typedef" alias, defaults
* and parameters options as enum classes
* ADIOSTypes.inl : inline implementatios for ADIOSTypes.h
*
* Created on: Feb 20, 2019
* Author: Kai Germaschewski <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion source/adios2/core/IO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ bool IO::RemoveAttribute(const std::string &name) noexcept
// attribute exists
if (itAttribute != m_Attributes.end())
{
// first remove the Variable object
// first remove the Attribute object
const std::string type(itAttribute->second.first);
const unsigned int index(itAttribute->second.second);

Expand Down