Skip to content
Snippets Groups Projects
Commit 2ac8f5b3 authored by wfg's avatar wfg
Browse files

Added fix to compilation

SingleBP was accessing private members of Group
parent 087a8a50
No related branches found
No related tags found
1 merge request!8Integrate groupless
...@@ -135,9 +135,9 @@ void SingleBP::Write( const std::string variableName, const int* values ) ...@@ -135,9 +135,9 @@ void SingleBP::Write( const std::string variableName, const int* values )
{ {
auto index = PreSetVariable( *m_Group, variableName, Support::DatatypesAliases.at("int"), " from call to Write int*" ); auto index = PreSetVariable( *m_Group, variableName, Support::DatatypesAliases.at("int"), " from call to Write int*" );
std::cout << "Hello from SingleBP Write integer with index " << index << "\n"; std::cout << "Hello from SingleBP Write integer with index " << index << "\n";
Variable<int>& variable = m_Group->m_Int[index]; // Variable<int>& variable = m_Group->m_Int[index];
variable.Values = values; // variable.Values = values;
auto localDimensions = m_Group->GetDimensions( variable.DimensionsCSV ); // auto localDimensions = m_Group->GetDimensions( variable.DimensionsCSV );
} }
......
...@@ -27,7 +27,12 @@ POSIX::POSIX( MPI_Comm mpiComm, const bool debugMode ): ...@@ -27,7 +27,12 @@ POSIX::POSIX( MPI_Comm mpiComm, const bool debugMode ):
POSIX::~POSIX( ) POSIX::~POSIX( )
{ } {
if( m_FileDescriptor != -1 )
{
close( m_FileDescriptor );
}
}
void POSIX::Open( const std::string name, const std::string accessMode ) void POSIX::Open( const std::string name, const std::string accessMode )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment