You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let circuit_dat_dest = witnesscalc_path.join("src").join(circuit_dat_name);
176
176
fs::copy(&circuit_dat,&circuit_dat_dest).expect("Failed to copy circuit .dat file");
177
177
//For each .cpp file, do the following: find the last include statement (should be #include "calcwit.hpp") and insert the following on the next line: namespace CIRCUIT_NAME {. Then, insert the closing } at the end of the file:
178
-
let circuit_cpp = fs::read_to_string(&path).expect("Failed to read circuit .cpp file");
178
+
let circuit_cpp = fs::read_to_string(path).expect("Failed to read circuit .cpp file");
0 commit comments