# Perforce Public Depot Jobs # # Job: The job name. 'new' generates a sequenced job number. # Status: Job status; [open/closed/suspended]. Required # Project: The project this job is for [none/cdsp4/jam/p4hl] Optional. # Severity: [A/B/C] (A is highest) Required. # ReportedBy The user who created the job. Can be changed. # ReportedDate: The date the job was created. Automatic. # ModifiedBy: The user who last modified this job. Automatic. # ModifiedDate: The date this job was last modified. Automatic. # OwnedBy: The owner, responsible for doing the job. Optional. # Description: Description of the job. Required. # DevNotes: Developer's comments. Optional. Job: job000024 Status: open Project: jam Severity: C ReportedBy: miklos_fazekas ReportedDate: 2002/12/20 08:42:33 ModifiedBy: shawn_hladky ModifiedDate: 2008/04/13 13:00:54 Description: Unreferenced local variables in jam 2.5 source code: rules.c(165) : warning C4101: 'c' : unreferenced local variable rules.c(268) : warning C4101: 'v' : unreferenced local variable make1.c(446) : warning C4101: 'cmd' : unreferenced local variable headers.c(55) : warning C4101: 'hdrcache' : unreferenced local variable Maybe it would be usefull to add following lines to Jam's Jamfile: if $(MSVC) || $(MSVCNT) { CCFLAGS += /W3 ; } [Entered on bahalf of Miklos by rmg, 12/20/2002]