Skip to content
Prev Previous commit
Next Next commit
Re-add recognition of '.cc' files as 'c++' language
  • Loading branch information
mike-v2 committed Dec 12, 2023
commit bc628be43436f40af941ae31f6f9003785560620
1 change: 1 addition & 0 deletions script/tool/lib/src/update_excerpts_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ class UpdateExcerptsCommand extends PackageLoopingCommand {
case '.kt':
language = 'kotlin';
break;
case '.cc':
case '.cpp':
language = 'c++';
break;
Expand Down