In C++, is it possible to declare a constant array as an extension of a smaller constant array?
For example, if I have the following array:
const uint32 oid_base[] = {1,3,6,1,4,1,72000};
const uint32 oid_complete[] = {1,3,6,1,4,1,72000,1,1};
Is there a way to declare oid_complete using oid_base in the declaration of oid_complete?
My guess is that this is not possible in C++, but was wondering if someone had a good solution for this.