Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robadob authored and ptheywood committed Aug 26, 2020
1 parent e29656c commit af985a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/flamegpu/gpu/CUDAAgent.cu
Original file line number Diff line number Diff line change
Expand Up @@ -580,14 +580,14 @@ void CUDAAgent::addInstantitateRTCFunction(jitify::JitCache &kernel_cache, const
#ifdef OUTPUT_RTC_DYNAMIC_FILES
// curve
std::ofstream file_curve_rtc_header;
file_curve_rtc_header.open ("curve_rtc_dynamic.h");
file_curve_rtc_header.open("curve_rtc_dynamic.h");
file_curve_rtc_header << curve_dynamic_header;
file_curve_rtc_header.close();
// agent function
std::ofstream agent_function_file;
std::string agent_function_filename = func_impl.c_str();
agent_function_filename.append(".cu");
agent_function_file.open (agent_function_filename);
agent_function_file.open(agent_function_filename);
agent_function_file << func.rtc_source;
agent_function_file.close();
#endif
Expand Down

0 comments on commit af985a7

Please sign in to comment.