Skip to content

Commit

Permalink
Merge pull request #3770 from BlGene/lint_fix
Browse files Browse the repository at this point in the history
Removed lint script reference to non-existant caffe_memcpy function.
  • Loading branch information
shelhamer committed Mar 5, 2016
2 parents a1c81ac + db7a261 commit 6a0b987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/cpp_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ def CheckForMultilineCommentsAndStrings(filename, clean_lines, linenum, error):
caffe_alt_function_list = (
('memset', ['caffe_set', 'caffe_memset']),
('cudaMemset', ['caffe_gpu_set', 'caffe_gpu_memset']),
('memcpy', ['caffe_copy', 'caffe_memcpy']),
('memcpy', ['caffe_copy']),
('cudaMemcpy', ['caffe_copy', 'caffe_gpu_memcpy']),
)

Expand Down

0 comments on commit 6a0b987

Please sign in to comment.