Skip to content

Commit

Permalink
suppressing C warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
RockfordWei committed May 29, 2023
1 parent a33126b commit d0dfb66
Show file tree
Hide file tree
Showing 91 changed files with 92 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ let czLibExcludes: [String] = [
"zlib.map", "zlib.pc", "zlib.pc.cmakein", "zlib.pc.in", "zlib2ansi"
]

let flags: [String] = ["-Wno-conversion", "-Wno-deprecated-non-prototype"]
let cSettings = [CSetting.unsafeFlags(flags)]

#if os(Linux)
let osdep: [Target.Dependency] = ["LinuxBridge"]
let ostag: [Target] = [.target(name: "LinuxBridge"), .target(name: "PerfectCSQLite3")]
Expand Down Expand Up @@ -56,10 +53,10 @@ let package = Package(
],
dependencies: [ ],
targets: ostag + [
.target(name: "COpenSSL", cSettings: cSettings),
.target(name: "COpenSSL"),
.target(name: "cURL"),
.target(name: "PerfectAuth", dependencies: ["PerfectCrypto", "PerfectCRUD", "PerfectSQLite"]),
.target(name: "PerfectCZlib", exclude: czLibExcludes, cSettings: cSettings),
.target(name: "PerfectCZlib", exclude: czLibExcludes),
.target(name: "PerfectCHTTPParser"),
.target(name: "PerfectLib", dependencies: osdep),
.target(name: "PerfectThread", dependencies: osdep),
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/a_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/asn1/a_bitstr.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/aes_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/aes/aes_cbc.c */
/* ====================================================================
* Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/ameth_lib.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
* 2006.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/asn1_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/asn1/asn1_err.c */
/* ====================================================================
* Copyright (c) 1999-2018 The OpenSSL Project. All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/asn_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* asn_mime.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/b_dump.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/bio/b_dump.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/b_print.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/bio/b_print.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/bf_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/bio/bf_buff.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/bio_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* bio_asn1.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/bn_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/bn/bn_add.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/bss_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/bio/bss_acpt.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/buffer.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/buffer/buffer.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/by_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/x509/by_dir.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/c_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/evp/c_all.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/cm_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
* 2010.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/cmac.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/cmac/cmac.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/cms_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/cms/cms_asn1.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/conf_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* conf_api.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/d1_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* ssl/d1_both.c */
/*
* DTLS implementation written by Nagendra Modadugu
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/d1_lib.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* ssl/d1_lib.c */
/*
* DTLS implementation written by Nagendra Modadugu
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/d2i_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/asn1/d2i_pr.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/dh_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
* 2006.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/dsa_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
* 2006.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/e_4758cca.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* Author: Maurice Gittens <[email protected]> */
/* ====================================================================
* Copyright (c) 1999 The OpenSSL Project. All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/e_aep.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* ====================================================================
* Copyright (c) 1999 The OpenSSL Project. All rights reserved.
*
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/e_aes.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* ====================================================================
* Copyright (c) 2001-2018 The OpenSSL Project. All rights reserved.
*
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/e_atalla.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/engine/hw_atalla.c */
/*
* Written by Geoff Thorpe ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/e_chil.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/engine/e_chil.c */
/*
* Written by Richard Levitte ([email protected]), Geoff Thorpe
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/e_cswift.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/engine/hw_cswift.c */
/*
* Written by Geoff Thorpe ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/e_des3.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/evp/e_des3.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/e_nuron.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/engine/hw_nuron.c */
/*
* Written by Ben Laurie for the OpenSSL Project, leaning heavily on Geoff
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/e_sureware.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/*-
* Written by Corinne Dive-Reclus([email protected])
*
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/e_ubsec.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/engine/hw_ubsec.c */
/*
* Written by Geoff Thorpe ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/ec2_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/ec/ec2_mult.c */
/* ====================================================================
* Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/ec_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
* 2006.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/ech_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/ecdh/ech_err.c */
/* ====================================================================
* Copyright (c) 1999-2011 The OpenSSL Project. All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/ecp_oct.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/ec/ecp_oct.c */
/*
* Includes code written by Lenka Fibikova <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/enc_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/des/enc_read.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/encode.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/evp/encode.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/eng_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/engine/eng_all.c */
/*
* Written by Richard Levitte <[email protected]> for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/err_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/err/err_all.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/evp_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* evp_acnf.c */
/*
* Written by Stephen Henson ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/gost_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/**********************************************************************
* gost_ameth.c *
* Copyright (c) 2005-2006 Cryptocom LTD *
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/gosthash.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/**********************************************************************
* gosthash.c *
* Copyright (c) 2005-2006 Cryptocom LTD *
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/hm_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
* 2007.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/hmac.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/hmac/hmac.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/m_sigver.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* m_sigver.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/md32_common.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/md32_common.h */
/* ====================================================================
* Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/md_rand.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/rand/md_rand.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/mem.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/mem.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/mem_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/mem_clr.c */
/*
* Written by Geoff Thorpe ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/n_pkey.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/asn1/n_pkey.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/o_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/o_dir.c */
/*
* Written by Richard Levitte ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/obj_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/objects/obj_dat.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/ocsp_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* ocsp_asn.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/ofb_enc.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/des/ofb_enc.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/p12_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* p12_add.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/p5_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* p5_crpt.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/p_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/evp/p_dec.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/pcy_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* pcy_cache.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/pem_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/pem/pem_all.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/pk7_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* pk7_asn.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/pvkfmt.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
* 2005.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/rand_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/rand/rand_egd.c */
/* Written by Ulf Moeller and Lutz Jaenicke for the OpenSSL project. */
/* ====================================================================
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/randfile.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/rand/randfile.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/rsa_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/rsa/rsa_ameth.c */
/*
* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL project
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/s23_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* ssl/s23_clnt.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/s3_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* ssl/s3_both.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/set_key.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/des/set_key.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/sha256.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/sha/sha256.c */
/* ====================================================================
* Copyright (c) 2004 The OpenSSL Project. All rights reserved
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/sha_locl.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/sha/sha_locl.h */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/srp_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/srp/srp_lib.c */
/*
* Written by Christophe Renou ([email protected]) with the
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/ssl_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* ssl/ssl_algs.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/str2key.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* crypto/des/str2key.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
1 change: 1 addition & 0 deletions Sources/COpenSSL/t1_.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#pragma clang diagnostic ignored "-Wconversion"
/* ssl/t1_clnt.c */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
Expand Down
Loading

0 comments on commit d0dfb66

Please sign in to comment.