]> git.droids-corp.org - dpdk.git/blobdiff - lib/cryptodev/rte_crypto.h
examples/pipeline: fix build
[dpdk.git] / lib / cryptodev / rte_crypto.h
index a864f5036f3a6d7da35fd405ef5ebcbc66925f7e..aeb3bf6e383ac03a291d21a372e1fc77cff6aaed 100644 (file)
@@ -123,15 +123,24 @@ struct rte_crypto_op {
        rte_iova_t phys_addr;
        /**< physical address of crypto operation */
 
+/* empty structures do not have zero size in C++ leading to compilation errors
+ * with clang about structure/union having different sizes in C and C++.
+ * While things are clearer with an explicit union, since each field is
+ * zero-sized it's not actually needed, so omit it for C++
+ */
+#ifndef __cplusplus
        __extension__
        union {
+#endif
                struct rte_crypto_sym_op sym[0];
                /**< Symmetric operation parameters */
 
                struct rte_crypto_asym_op asym[0];
                /**< Asymmetric operation parameters */
 
+#ifndef __cplusplus
        }; /**< operation specific parameters */
+#endif
 };
 
 /**