Skip to content
Snippets Groups Projects
Commit f25ecd88 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

fixed warning

parent 6cdedb62
No related branches found
No related tags found
No related merge requests found
......@@ -163,8 +163,8 @@ public:
double getKbT()const;
void setNatoms(int);
const int getNatoms()const;
const int getNVirtualAtoms()const;
int getNatoms()const;
int getNVirtualAtoms()const;
const long int& getDdStep()const;
const std::vector<int>& getGatindex()const;
......@@ -240,12 +240,12 @@ public:
};
inline
const int Atoms::getNatoms()const {
int Atoms::getNatoms()const {
return natoms;
}
inline
const int Atoms::getNVirtualAtoms()const {
int Atoms::getNVirtualAtoms()const {
return virtualAtomsActions.size();
}
......
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