Skip to content

Commit

Permalink
minor cleaning
Browse files Browse the repository at this point in the history
Signed-off-by: Perminder <[email protected]>
  • Loading branch information
perminder-17 committed Nov 10, 2024
1 parent 63324fe commit 6afb548
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions avogadro/core/cube.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "vector.h"

#include <vector>
#include <array> // Include this for std::array
#include <array>

namespace Avogadro {
namespace Core {
Expand Down Expand Up @@ -239,7 +239,6 @@ class AVOGADROCORE_EXPORT Cube
*/
Mutex* lock() const { return m_lock; }

// Add declarations for the functions defined in cube.cpp
/**
* Compute the gradient at a specific point in the cube.
* @param i x index
Expand Down Expand Up @@ -284,7 +283,6 @@ std::array<std::array<float, 3>, 8> getPosCube(int i, int j, int k) const;
Vector3 m_min, m_max, m_spacing;
Vector3i m_points;
float m_minValue, m_maxValue;
// Removed conflicting 'data' member variable
std::string m_name;
Type m_cubeType;
Mutex* m_lock;
Expand Down

0 comments on commit 6afb548

Please sign in to comment.