Skip to content

Commit 680bc3e

Browse files
committed
Fix Lint
1 parent d938a57 commit 680bc3e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

include/flamegpu/runtime/detail/curve/Curve.cuh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace flamegpu {
1616
namespace detail {
1717
namespace curve {
1818

19-
// #include <cuda_runtime.h>
19+
// #include <cuda_runtime.h>
2020

2121

2222
class Curve {

include/flamegpu/runtime/detail/curve/DeviceCurve.cuh

-2
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,6 @@ class DeviceCurve {
441441
*/
442442
template <typename T, unsigned int N, unsigned int M>
443443
__device__ __forceinline__ static void setArrayVariable(const char(&variableName)[M], VariableHash namespace_hash, T variable, unsigned int variable_index, unsigned int array_index);
444-
445-
446444
};
447445

448446

include/flamegpu/runtime/detail/curve/HostCurve.cuh

+3-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class HostCurve {
3939
* @param num Unsigned int to be hashed
4040
* @return a 32 bit cuRVE string variable hash.
4141
*/
42-
__host__ static VariableHash variableRuntimeHash(unsigned int num);
42+
__host__ static VariableHash variableRuntimeHash(unsigned int num);
4343
/**
4444
* Function for getting a handle (hash table index) to a cuRVE variable from a variable string hash
4545
*
@@ -186,6 +186,7 @@ class HostCurve {
186186
* @param stream CUDA stream to be passed to initialiseDevice()
187187
*/
188188
__host__ void purge(cudaStream_t stream);
189+
189190
protected:
190191
/**
191192
* Default constructor.
@@ -196,7 +197,7 @@ class HostCurve {
196197
*/
197198
HostCurve();
198199

199-
public:
200+
public:
200201
~HostCurve();
201202
CurveTable h_curve_table, *d_curve_table;
202203
/**

0 commit comments

Comments
 (0)