Skip to content

Commit 3513c44

Browse files
committed
Remove unused code in gen_code_snippets.jl
1 parent e53e49e commit 3513c44

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/code_gen/gen_code_snippets.jl

-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ function push_code!(code, str; ind_lvl = 1, ind_str = " ")
1212
indented_string = isempty(str) ? "" : indentation * str
1313
return push!(code.code_lines, indented_string)
1414
end
15-
function push_code_verbatim_string!(code, str)
16-
for line in split(str, "\n")
17-
push!(code.code_lines, line)
18-
end
19-
end
2015
function push_comment!(code, str; ind_lvl = 1, ind_str = " ")
2116
# Convert empty comments to empty lines.
2217
return push_code!(

0 commit comments

Comments
 (0)