iwyu 8.17-1 source package in Ubuntu

Changelog

iwyu (8.17-1) unstable; urgency=medium

  * New upstream release
  * Update llvm/clang from 12 to 13

 -- Sylvestre Ledru <email address hidden>  Thu, 09 Dec 2021 13:25:46 +0100

Upload details

Uploaded by:
LLVM Packaging Team
Uploaded to:
Sid
Original maintainer:
LLVM Packaging Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe misc

Downloads

File Size SHA-256 Checksum
iwyu_8.17-1.dsc 2.0 KiB 4df20049e4d2b7b9fc0fb79fa1e9c7f99c49f4d563ea8906eb779605dcca0a21
iwyu_8.17.orig.tar.gz 729.9 KiB 2682727a4462d2d233ac1c03e63b29d606262dd9e54920e7a70dddc25d4cb270
iwyu_8.17-1.debian.tar.xz 8.6 KiB ab5274ef5aeee8346dddf7b1370f90d5dc89d16f42c442584e901d57f0a5957d

Available diffs

No changes file available.

Binary packages built by this source

iwyu: Analyze #includes in C and C++ source files

 "Include what you use" means this: for every symbol (type, function variable,
 or macro) that you use in foo.cc, either foo.cc or foo.h should #include a .h
 file that exports the declaration of that symbol. The include-what-you-use
 tool is a program that can be built with the clang libraries in order to
 analyze #includes of source files to find include-what-you-use violations,
 and suggest fixes for them.
 .
 The main goal of include-what-you-use is to remove superfluous #includes.
 It does this both by figuring out what #includes are not actually needed for
 this file (for both .cc and .h files), and replacing #includes with
 forward-declares when possible.

iwyu-dbgsym: debug symbols for iwyu